2014-11-02 00:11:11 +01:00
|
|
|
{ stdenv, fetchurl, python, pythonPackages, cdparanoia, cdrdao
|
|
|
|
, pygobject, gst_python, gst_plugins_base, gst_plugins_good
|
2014-12-23 13:13:19 +01:00
|
|
|
, setuptools, utillinux, makeWrapper, substituteAll }:
|
2014-11-02 00:11:11 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "morituri-${version}";
|
|
|
|
version = "0.2.3";
|
2014-12-23 13:13:19 +01:00
|
|
|
namePrefix = "";
|
2014-11-02 00:11:11 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://thomas.apestaart.org/download/morituri/${name}.tar.bz2";
|
|
|
|
sha256 = "1b30bs1y8azl04izsrl01gw9ys0lhzkn5afxi4p8qbiri2h4v210";
|
|
|
|
};
|
|
|
|
|
|
|
|
pythonPath = [
|
|
|
|
pygobject gst_python pythonPackages.musicbrainzngs
|
|
|
|
pythonPackages.pycdio pythonPackages.pyxdg setuptools
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
python cdparanoia cdrdao utillinux makeWrapper
|
|
|
|
gst_plugins_base gst_plugins_good
|
|
|
|
] ++ pythonPath;
|
|
|
|
|
2014-12-23 13:13:19 +01:00
|
|
|
patches = [
|
|
|
|
(substituteAll {
|
|
|
|
src = ./paths.patch;
|
|
|
|
inherit cdrdao cdparanoia python utillinux;
|
|
|
|
})
|
|
|
|
];
|
2014-11-02 00:11:11 +01: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";
|
|
|
|
maintainers = [ maintainers.rycee ];
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
};
|
|
|
|
}
|