3
0
Fork 0
forked from mirrors/nixpkgs

spCompat: remove

not used anymore
This commit is contained in:
Robin Gloster 2017-08-11 13:26:10 +02:00
parent aa8e60d934
commit 14080832b0
No known key found for this signature in database
GPG key ID: 5E4C836C632C2882
2 changed files with 0 additions and 23 deletions

View file

@ -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;
};
}

View file

@ -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 {};