From d532615dfc76a69fe9c0df67bb45eec4d7a6be65 Mon Sep 17 00:00:00 2001 From: AndersonTorres Date: Sun, 18 Feb 2018 18:00:28 -0300 Subject: cue2pops: init at git-2018-01-04 --- pkgs/tools/cd-dvd/cue2pops/default.nix | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pkgs/tools/cd-dvd/cue2pops/default.nix (limited to 'pkgs/tools/cd-dvd') diff --git a/pkgs/tools/cd-dvd/cue2pops/default.nix b/pkgs/tools/cd-dvd/cue2pops/default.nix new file mode 100644 index 000000000000..a83dbf875775 --- /dev/null +++ b/pkgs/tools/cd-dvd/cue2pops/default.nix @@ -0,0 +1,28 @@ +{ stdenv, fetchFromGitHub }: + +with stdenv.lib; +stdenv.mkDerivation rec { + name = "cue2pops-${version}"; + version = "git-2018-01-04"; + + src = fetchFromGitHub { + owner = "makefu"; + repo = "cue2pops-linux"; + rev = "541863adf23fdecde92eba5899f8d58586ca4551"; + sha256 = "05w84726g3k33rz0wwb9v77g7xh4cnhy9sxlpilf775nli9bynrk"; + }; + + dontConfigure = true; + + installPhase = '' + install --directory --mode=755 $out/bin + install --mode=755 cue2pops $out/bin + ''; + + meta = { + description = "Convert CUE to ISO suitable to POPStarter"; + homepage = https://github.com/makefu/cue2pops-linux; + maintainers = with maintainers; [ AndersonTorres ]; + platforms = platforms.all; + }; +} -- cgit v1.2.3 From f24ca86d5588ad9551a487e32ad8f13805a9a787 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Wed, 21 Feb 2018 10:09:49 +0000 Subject: cue2pops: fix darwin build --- pkgs/tools/cd-dvd/cue2pops/default.nix | 2 ++ 1 file changed, 2 insertions(+) (limited to 'pkgs/tools/cd-dvd') diff --git a/pkgs/tools/cd-dvd/cue2pops/default.nix b/pkgs/tools/cd-dvd/cue2pops/default.nix index a83dbf875775..6523c8a0cf3f 100644 --- a/pkgs/tools/cd-dvd/cue2pops/default.nix +++ b/pkgs/tools/cd-dvd/cue2pops/default.nix @@ -14,6 +14,8 @@ stdenv.mkDerivation rec { dontConfigure = true; + makeFlags = ["CC=cc"]; + installPhase = '' install --directory --mode=755 $out/bin install --mode=755 cue2pops $out/bin -- cgit v1.2.3