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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
894 B
Nix
Raw Normal View History

2021-09-19 18:08:06 +01:00
{ lib, stdenv, fetchFromGitHub, python, mutagen, wrapPython, opusTools, mpg123 }:
2015-01-19 18:47:11 +00:00
2016-04-25 19:18:26 +01:00
let version = "0.12.2"; in
2015-01-19 18:47:11 +00:00
stdenv.mkDerivation rec {
2019-08-13 22:52:01 +01:00
pname = "dir2opus";
inherit version;
2015-01-19 18:47:11 +00:00
pythonPath = [ mutagen ];
buildInputs = [ wrapPython ];
2016-04-25 19:18:26 +01:00
propagatedBuildInputs = [ opusTools mpg123 ];
2015-01-19 18:47:11 +00:00
2021-09-19 18:08:06 +01:00
src = fetchFromGitHub {
owner = "ehmry";
repo = "dir2opus";
rev = version;
hash = "sha256-ZEsXwqxikWxFOz99wTI3rEK/rEYA+BSWGrCwW4q+FFc=";
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 lib; {
homepage = "https://github.com/ehmry/dir2opus";
maintainers = [ maintainers.ehmry ];
license = licenses.gpl2;
platforms = platforms.unix;
};
2016-04-25 19:18:26 +01:00
}