nixpkgs/pkgs/applications/audio/morituri/default.nix

56 lines
1.5 KiB
Nix
Raw Normal View History

{ stdenv, fetchgit, pythonPackages, cdparanoia, cdrdao
, gst-python, gst-plugins-base, gst-plugins-good
, utillinux, makeWrapper, substituteAll, autoreconfHook }:
2014-11-01 23:11:11 +00:00
let
inherit (pythonPackages) python;
in stdenv.mkDerivation rec {
2014-11-01 23:11:11 +00:00
name = "morituri-${version}";
2015-11-28 07:29:42 +00:00
version = "0.2.3.20151109";
namePrefix = "";
2014-11-01 23:11:11 +00:00
2015-11-28 07:29:42 +00:00
src = fetchgit {
url = "https://github.com/thomasvs/morituri.git";
fetchSubmodules = true;
rev = "135b2f7bf27721177e3aeb1d26403f1b29116599";
sha256 = "1sl5y5j3gdbynf2v0gf9dwd2hzawj8lm8ywadid7qm34yn8lx12k";
2014-11-01 23:11:11 +00:00
};
pythonPath = with pythonPackages; [
pygobject2 gst-python musicbrainzngs
pycdio pyxdg setuptools
CDDB
2014-11-01 23:11:11 +00:00
];
2015-11-28 07:29:42 +00:00
nativeBuildInputs = [ autoreconfHook ];
2014-11-01 23:11:11 +00:00
buildInputs = [
python cdparanoia cdrdao utillinux makeWrapper
gst-plugins-base gst-plugins-good
2014-11-01 23:11:11 +00:00
] ++ pythonPath;
patches = [
(substituteAll {
src = ./paths.patch;
inherit cdrdao cdparanoia python utillinux;
})
];
2014-11-01 23:11:11 +00:00
# This package contains no binaries to patch or strip.
dontPatchELF = true;
dontStrip = true;
postInstall = ''
wrapProgram "$out/bin/rip" \
--prefix PYTHONPATH : "$PYTHONPATH" \
--prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH"
'';
meta = with stdenv.lib; {
homepage = http://thomas.apestaart.org/morituri/trac/;
description = "A CD ripper aiming for accuracy over speed";
2015-06-22 06:25:07 +00:00
maintainers = with maintainers; [ rycee jgeerds ];
2014-11-01 23:11:11 +00:00
license = licenses.gpl3Plus;
platforms = platforms.linux;
2014-11-01 23:11:11 +00:00
};
}