summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/cd-dvd
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2018-02-21 10:11:44 +0000
committerGitHub <noreply@github.com>2018-02-21 10:11:44 +0000
commitd428bc27bece8afd73fbcc1d3e95ca16763e6836 (patch)
tree4e32ce37e6c8dc17b99c56935e01238806371244 /pkgs/tools/cd-dvd
parent0429e8fbe95a7f8082f40f1565f94ac2803ed4e0 (diff)
parentf24ca86d5588ad9551a487e32ad8f13805a9a787 (diff)
Merge pull request #35145 from AndersonTorres/upload/cue2pops
cue2pops: init at git-2018-01-04
Diffstat (limited to 'pkgs/tools/cd-dvd')
-rw-r--r--pkgs/tools/cd-dvd/cue2pops/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/tools/cd-dvd/cue2pops/default.nix b/pkgs/tools/cd-dvd/cue2pops/default.nix
new file mode 100644
index 000000000000..6523c8a0cf3f
--- /dev/null
+++ b/pkgs/tools/cd-dvd/cue2pops/default.nix
@@ -0,0 +1,30 @@
+{ 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;
+
+ makeFlags = ["CC=cc"];
+
+ 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;
+ };
+}