2015-04-24 09:21:40 +00:00
|
|
|
{ stdenv, fetchurl, autoreconfHook
|
|
|
|
, bison, flac, flex, id3v2, vorbisTools
|
|
|
|
}:
|
2013-03-17 23:18:36 +00:00
|
|
|
|
2015-04-24 09:21:40 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "cuetools-${version}";
|
|
|
|
version = "1.4.1";
|
2013-03-17 23:18:36 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-04-24 09:21:40 +00:00
|
|
|
url = "https://github.com/svend/cuetools/archive/${version}.tar.gz";
|
|
|
|
sha256 = "01xi3rvdmil9nawsha04iagjylqr1l9v9vlzk99scs8c207l58i4";
|
2013-03-17 23:18:36 +00:00
|
|
|
};
|
|
|
|
|
2015-04-24 09:21:40 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2013-03-17 23:18:36 +00:00
|
|
|
|
2015-04-24 09:21:40 +00:00
|
|
|
buildInputs = [ bison flac flex id3v2 vorbisTools ];
|
2013-03-17 23:18:36 +00:00
|
|
|
|
2015-04-24 09:21:40 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A set of utilities for working with cue files and toc files";
|
2013-03-17 23:18:36 +00:00
|
|
|
homepage = https://github.com/svend/cuetools;
|
2015-04-24 09:21:40 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ codyopel jcumming ];
|
|
|
|
platforms = platforms.all;
|
2013-03-17 23:18:36 +00:00
|
|
|
};
|
|
|
|
}
|