nixpkgs/pkgs/tools/audio/dir2opus/default.nix

35 lines
913 B
Nix
Raw Normal View History

2016-04-25 18:18:26 +00:00
{ stdenv, fetchurl, python, mutagen, wrapPython, opusTools, mpg123 }:
2015-01-19 18:47:11 +00:00
2016-04-25 18:18:26 +00:00
let version = "0.12.2"; in
2015-01-19 18:47:11 +00:00
stdenv.mkDerivation rec {
name = "dir2opus-${version}";
pythonPath = [ mutagen ];
buildInputs = [ wrapPython ];
2016-04-25 18:18:26 +00:00
propagatedBuildInputs = [ opusTools mpg123 ];
2015-01-19 18:47:11 +00:00
src = fetchurl {
url = "https://github.com/ehmry/dir2opus/archive/${version}.tar.gz";
name = "${name}.tar.gz";
2016-04-25 18:18:26 +00:00
sha256 = "0bl8fa9zhccihnj1v3lpz5jb737frf9za06xb7j5rsjws6xky80d";
2015-01-19 18:47:11 +00:00
};
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;
};
2016-04-25 18:18:26 +00:00
}