mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
spCompat: remove
not used anymore
This commit is contained in:
parent
aa8e60d934
commit
14080832b0
2 changed files with 0 additions and 23 deletions
|
@ -1,21 +0,0 @@
|
|||
{ stdenv, opensp }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "sp-compat-${stdenv.lib.getVersion opensp}";
|
||||
|
||||
phases = [ "installPhase" "fixupPhase" ];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -pv $out/bin
|
||||
for i in ${opensp}/bin/o*; do
|
||||
ln -sv $i $out/bin/''${i#${opensp}/bin/o}
|
||||
done
|
||||
'';
|
||||
|
||||
setupHook = opensp.setupHook;
|
||||
|
||||
meta = opensp.meta // {
|
||||
description = "Compatibility wrapper for old programs looking for original sp programs";
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
};
|
||||
}
|
|
@ -3558,8 +3558,6 @@ with pkgs;
|
|||
|
||||
opensp = callPackage ../tools/text/sgml/opensp { };
|
||||
|
||||
spCompat = callPackage ../tools/text/sgml/opensp/compat.nix { };
|
||||
|
||||
opentracker = callPackage ../applications/networking/p2p/opentracker { };
|
||||
|
||||
opentsdb = callPackage ../tools/misc/opentsdb {};
|
||||
|
|
Loading…
Reference in a new issue