about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/audio/dir2opus
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/audio/dir2opus')
-rw-r--r--nixpkgs/pkgs/tools/audio/dir2opus/default.nix35
1 files changed, 35 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/tools/audio/dir2opus/default.nix b/nixpkgs/pkgs/tools/audio/dir2opus/default.nix
new file mode 100644
index 000000000000..872006547031
--- /dev/null
+++ b/nixpkgs/pkgs/tools/audio/dir2opus/default.nix
@@ -0,0 +1,35 @@
+{ stdenv, fetchurl, python, mutagen, wrapPython, opusTools, mpg123 }:
+
+let version = "0.12.2"; in
+stdenv.mkDerivation rec {
+  pname = "dir2opus";
+  inherit version;
+
+  pythonPath = [ mutagen ];
+  buildInputs = [ wrapPython ];
+  propagatedBuildInputs = [ opusTools mpg123 ];
+
+  src = fetchurl {
+    url = "https://github.com/ehmry/dir2opus/archive/${version}.tar.gz";
+    name = "${pname}-${version}.tar.gz";
+    sha256 = "0bl8fa9zhccihnj1v3lpz5jb737frf9za06xb7j5rsjws6xky80d";
+  };
+
+  postPatch = "sed -i -e 's|#!/usr/bin/python|#!${python}/bin/python|' dir2opus";
+
+  installPhase =
+    ''
+      mkdir -p $out/bin $out/share/man/man1
+      cp dir2opus $out/bin
+      cp dir2opus.1 $out/share/man/man1
+    '';
+
+  postFixup = "wrapPythonPrograms";
+
+  meta = with stdenv.lib; {
+    homepage = "https://github.com/ehmry/dir2opus";
+    maintainers = [ maintainers.ehmry ];
+    license = licenses.gpl2;
+    platforms = platforms.unix;
+  };
+}