nixpkgs/pkgs/by-name/bc/bchunk/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
736 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 = "Program that converts CD images in BIN/CUE format into a set of ISO and CDR tracks";
platforms = platforms.unix;
2024-04-26 11:35:31 +00:00
license = licenses.gpl2Plus;
2023-11-23 02:51:17 +00:00
mainProgram = "bchunk";
};
}