about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@gmail.com>2018-02-18 14:21:11 -0300
committerAndersonTorres <torres.anderson.85@gmail.com>2018-02-18 15:06:11 -0300
commit09836bcf0d0b7ef16b695d0ff96dc5f406866e14 (patch)
tree75adbbe0da68e87697823750f03efa62c7daf216
parentc64639b54caa6595f9ef62ed2548593b5fe5db66 (diff)
downloadnixlib-09836bcf0d0b7ef16b695d0ff96dc5f406866e14.tar
nixlib-09836bcf0d0b7ef16b695d0ff96dc5f406866e14.tar.gz
nixlib-09836bcf0d0b7ef16b695d0ff96dc5f406866e14.tar.bz2
nixlib-09836bcf0d0b7ef16b695d0ff96dc5f406866e14.tar.lz
nixlib-09836bcf0d0b7ef16b695d0ff96dc5f406866e14.tar.xz
nixlib-09836bcf0d0b7ef16b695d0ff96dc5f406866e14.tar.zst
nixlib-09836bcf0d0b7ef16b695d0ff96dc5f406866e14.zip
ecm-tools: init at 1.0.3
-rw-r--r--pkgs/tools/cd-dvd/ecm-tools/default.nix29
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/tools/cd-dvd/ecm-tools/default.nix b/pkgs/tools/cd-dvd/ecm-tools/default.nix
new file mode 100644
index 000000000000..ec814d97bde0
--- /dev/null
+++ b/pkgs/tools/cd-dvd/ecm-tools/default.nix
@@ -0,0 +1,29 @@
+{ stdenv, fetchFromGitHub }:
+
+stdenv.mkDerivation rec {
+  name = "ecm-tools-${version}";
+  version = "1.0.3";
+
+  src = fetchFromGitHub {
+    owner = "alucryd";
+    repo = "ecm-tools";
+    rev = "v${version}";
+    sha256 = "1rvyx5gcy8lfklgj80szlz3312x45wzx0d9jsgwyvy8f6m4nnb0c";
+  };
+
+  dontConfigure = true;
+
+  installPhase = ''
+    install --directory --mode=755 $out/bin
+    install --mode=755 bin2ecm $out/bin
+    (cd $out/bin; ln -s bin2ecm ecm2bin)
+  '';
+
+  meta = with stdenv.lib; {
+    description = "A utility to uncompress ECM files to BIN CD format";
+    homepage = https://github.com/alucryd/ecm-tools;
+    license = licenses.gpl3;
+    maintainers = with maintainers; [ AndersonTorres ];
+    platforms = platforms.all;
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 3d9fcb7ca3fc..1bc3c040793b 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -1982,6 +1982,8 @@ with pkgs;
     # customConfig = builtins.readFile ./dvtm.config.h;
   };
 
+  ecmtools = callPackage ../tools/cd-dvd/ecm-tools { };
+
   e2tools = callPackage ../tools/filesystems/e2tools { };
 
   e2fsprogs = callPackage ../tools/filesystems/e2fsprogs { };