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

33 lines
750 B
Nix
Raw Normal View History

2021-02-04 23:19:00 +00:00
{ lib
, stdenv
, fetchFromGitHub
}:
2018-02-18 21:00:28 +00:00
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "cue2pops";
2021-02-04 23:19:00 +00:00
version = "unstable-2018-01-04";
2018-02-18 21:00:28 +00:00
src = fetchFromGitHub {
owner = "makefu";
repo = "cue2pops-linux";
rev = "541863adf23fdecde92eba5899f8d58586ca4551";
sha256 = "05w84726g3k33rz0wwb9v77g7xh4cnhy9sxlpilf775nli9bynrk";
};
dontConfigure = true;
makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];
2018-02-21 10:09:49 +00:00
2018-02-18 21:00:28 +00:00
installPhase = ''
install --directory --mode=755 $out/bin
install --mode=755 cue2pops $out/bin
'';
2021-02-04 23:19:00 +00:00
meta = with lib; {
2018-02-18 21:00:28 +00:00
description = "Convert CUE to ISO suitable to POPStarter";
homepage = "https://github.com/makefu/cue2pops-linux";
2018-02-18 21:00:28 +00:00
maintainers = with maintainers; [ AndersonTorres ];
platforms = platforms.all;
};
}