* Add bchunk.

svn path=/nixpkgs/trunk/; revision=34529
This commit is contained in:
Eelco Dolstra 2012-06-17 03:36:22 +00:00
parent a5c2318d08
commit 5808b3804c
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "bchunk-1.2.0";
src = fetchurl {
url = "http://he.fi/bchunk/${name}.tar.gz";
sha256 = "0pcbyx3689cbl23dcij497hb3q5f1wmki7cxic5nzldx71g9vp5g";
};
preConfigure =
''
substituteInPlace Makefile \
--replace "-o root -g root" "" \
--replace "-o bin -g bin" ""
'';
makeFlags = "PREFIX=$(out) MAN_DIR=$(out)/share/man";
preInstall = "mkdir -p $out/bin $out/share/man/man1";
meta = {
homepage = http://he.fi/bchunk/;
description = "A program that converts CD-ROM images in BIN/CUE format into a set of ISO and CDR tracks";
};
}

View File

@ -431,6 +431,8 @@ let
bc = callPackage ../tools/misc/bc { };
bchunk = callPackage ../tools/cd-dvd/bchunk { };
bfr = callPackage ../tools/misc/bfr { };
bootchart = callPackage ../tools/system/bootchart { };