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 {
|
2019-08-15 12:41:18 +00:00
|
|
|
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;
|
|
|
|
|
2021-02-16 11:48:46 +00:00
|
|
|
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";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/makefu/cue2pops-linux";
|
2018-02-18 21:00:28 +00:00
|
|
|
maintainers = with maintainers; [ AndersonTorres ];
|
|
|
|
platforms = platforms.all;
|
2023-11-23 02:51:17 +00:00
|
|
|
mainProgram = "cue2pops";
|
2018-02-18 21:00:28 +00:00
|
|
|
};
|
|
|
|
}
|