spCompat: remove

not used anymore
This commit is contained in:
Robin Gloster
2017-08-11 13:26:50 +02:00
parent aa8e60d934
commit 14080832b0
2 changed files with 0 additions and 23 deletions
-21
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;
};
}