summary refs log tree commit diff
path: root/pkgs/tools/audio/dir2opus/default.nix
blob: 4875ebf504b48d3786457d6df95727ce61310c7a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ stdenv, fetchurl, python, mutagen, wrapPython, opusTools }:

let version = "0.12.1"; in
stdenv.mkDerivation rec {
  name = "dir2opus-${version}";

  pythonPath = [ mutagen ];
  buildInputs = [ wrapPython ];
  propagatedBuildInputs = [ opusTools ];

  src = fetchurl {
    url = "https://github.com/ehmry/dir2opus/archive/${version}.tar.gz";
    name = "${name}.tar.gz";
    sha256 = "1d6x3qfcj5lfmc8gzna1vrr7fl31i86ha8l4nz5987rx57fgwf0q";
  };

  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;
    };
}