summary refs log tree commit diff
path: root/pkgs/tools/cd-dvd
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@gmail.com>2018-02-18 18:00:28 -0300
committerAndersonTorres <torres.anderson.85@gmail.com>2018-02-18 18:01:53 -0300
commitd532615dfc76a69fe9c0df67bb45eec4d7a6be65 (patch)
treeb32546e07b32d88da45824038900baa485321012 /pkgs/tools/cd-dvd
parentdc2b7b9e685815a8b689dc1131ec4078701ec7f9 (diff)
downloadnixpkgs-d532615dfc76a69fe9c0df67bb45eec4d7a6be65.tar
nixpkgs-d532615dfc76a69fe9c0df67bb45eec4d7a6be65.tar.gz
nixpkgs-d532615dfc76a69fe9c0df67bb45eec4d7a6be65.tar.bz2
nixpkgs-d532615dfc76a69fe9c0df67bb45eec4d7a6be65.tar.lz
nixpkgs-d532615dfc76a69fe9c0df67bb45eec4d7a6be65.tar.xz
nixpkgs-d532615dfc76a69fe9c0df67bb45eec4d7a6be65.tar.zst
nixpkgs-d532615dfc76a69fe9c0df67bb45eec4d7a6be65.zip
cue2pops: init at git-2018-01-04
Diffstat (limited to 'pkgs/tools/cd-dvd')
-rw-r--r--pkgs/tools/cd-dvd/cue2pops/default.nix28
1 files changed, 28 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 00000000000..a83dbf87577
--- /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;
+  };
+}