diff options
author | Lluís Batlle i Rossell | 2009-04-21 07:05:38 +0000 |
---|---|---|
committer | Lluís Batlle i Rossell | 2009-04-21 07:05:38 +0000 |
commit | ea933bf894ef56ce84d8e15bb9cc813e5badd44f (patch) | |
tree | 0ed04f2151c9f6753f8ac34e9cb366b1b88f5433 | |
parent | 01f309e2d4901f74eee8f0f8a13d68be67801484 (diff) |
Adding symlinks for cdrkit, to be similar to the cdrtools.
svn path=/nixpkgs/trunk/; revision=15203
-rw-r--r-- | pkgs/tools/cd-dvd/cdrkit/default.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/tools/cd-dvd/cdrkit/default.nix b/pkgs/tools/cd-dvd/cdrkit/default.nix index 7e5bb44764cd..b1060d97a1e0 100644 --- a/pkgs/tools/cd-dvd/cdrkit/default.nix +++ b/pkgs/tools/cd-dvd/cdrkit/default.nix @@ -10,6 +10,12 @@ stdenv.mkDerivation rec { buildInputs = [cmake libcap zlib bzip2]; + postInstall = '' + # file name compatibility with the old cdrecord (growisofs wants this name) + ln -s $out/bin/genisoimage $out/bin/mkisofs + ln -s $out/bin/devdump $out/bin/cdrecord + ''; + makeFlags = "PREFIX=\$(out)"; meta = { |