Added cdrkit to burn DVDs.

svn path=/nixpkgs/trunk/; revision=8958
This commit is contained in:
Michael Raskin
2007-07-07 22:31:37 +00:00
parent ee4bc350af
commit 26ad059fb5
3 changed files with 44 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
{stdenv, fetchurl, cmake, libcap, zlib}:
stdenv.mkDerivation {
name = "cdrkit-1.1.6";
src = fetchurl {
url = http://cdrkit.org/releases/cdrkit-1.1.6.tar.gz;
sha256 = "0xb1zqq4s3ylfyzb09s1gpxqr5prhrnpsyycb585ds5p51ymx54r";
};
buildInputs = [cmake libcap zlib];
makeFlags = "PREFIX=\$(out)";
meta = {
description = "
CD and DVD writing kit, mostly compatible with cdrtools.
";
};
}