summary refs log tree commit diff
path: root/pkgs/tools/cd-dvd
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-04-21 07:05:38 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-04-21 07:05:38 +0000
commitea933bf894ef56ce84d8e15bb9cc813e5badd44f (patch)
tree0ed04f2151c9f6753f8ac34e9cb366b1b88f5433 /pkgs/tools/cd-dvd
parent01f309e2d4901f74eee8f0f8a13d68be67801484 (diff)
downloadnixpkgs-ea933bf894ef56ce84d8e15bb9cc813e5badd44f.tar
nixpkgs-ea933bf894ef56ce84d8e15bb9cc813e5badd44f.tar.gz
nixpkgs-ea933bf894ef56ce84d8e15bb9cc813e5badd44f.tar.bz2
nixpkgs-ea933bf894ef56ce84d8e15bb9cc813e5badd44f.tar.lz
nixpkgs-ea933bf894ef56ce84d8e15bb9cc813e5badd44f.tar.xz
nixpkgs-ea933bf894ef56ce84d8e15bb9cc813e5badd44f.tar.zst
nixpkgs-ea933bf894ef56ce84d8e15bb9cc813e5badd44f.zip
Adding symlinks for cdrkit, to be similar to the cdrtools.
svn path=/nixpkgs/trunk/; revision=15203
Diffstat (limited to 'pkgs/tools/cd-dvd')
-rw-r--r--pkgs/tools/cd-dvd/cdrkit/default.nix6
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 7e5bb44764c..b1060d97a1e 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 = {