nixpkgs/pkgs/tools/text/sgml/opensp/compat.nix
Eelco Dolstra 86afcccecb sp-compat: Fix build
You can't run fixupPhase before installPhase.

http://hydra.nixos.org/build/8149119
2014-01-17 12:13:20 +01:00

20 lines
421 B
Nix

{ 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.description =
"Compatibility wrapper for old programs looking for original sp programs";
}