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