nixpkgs/pkgs/tools/cd-dvd/bchunk/default.nix

26 lines
706 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "bchunk";
2017-11-13 23:39:23 +00:00
version = "1.2.2";
src = fetchurl {
url = "http://he.fi/bchunk/${pname}-${version}.tar.gz";
2017-11-13 23:39:23 +00:00
sha256 = "12dxx98kbpc5z4dgni25280088bhlsb677rp832r82zzc1drpng7";
};
makeFlags = lib.optionals stdenv.cc.isClang [ "CC=${stdenv.cc.targetPrefix}cc" "LD=${stdenv.cc.targetPrefix}cc" ];
2018-03-08 21:31:55 +00:00
installPhase = ''
install -Dt $out/bin bchunk
2018-03-08 21:31:55 +00:00
install -Dt $out/share/man/man1 bchunk.1
'';
meta = with lib; {
homepage = "http://he.fi/bchunk/";
description = "A program that converts CD images in BIN/CUE format into a set of ISO and CDR tracks";
platforms = platforms.unix;
2018-09-07 20:39:15 +00:00
license = licenses.gpl2;
};
}