1{ stdenv, fetchurl, autoreconfHook
2, bison, flac, flex, id3v2, vorbisTools
3}:
4
5stdenv.mkDerivation rec {
6 name = "cuetools-${version}";
7 version = "1.4.1";
8
9 src = fetchurl {
10 url = "https://github.com/svend/cuetools/archive/${version}.tar.gz";
11 sha256 = "01xi3rvdmil9nawsha04iagjylqr1l9v9vlzk99scs8c207l58i4";
12 };
13
14 nativeBuildInputs = [ autoreconfHook ];
15
16 buildInputs = [ bison flac flex id3v2 vorbisTools ];
17
18 meta = with stdenv.lib; {
19 description = "A set of utilities for working with cue files and toc files";
20 homepage = https://github.com/svend/cuetools;
21 license = licenses.gpl2;
22 maintainers = with maintainers; [ codyopel jcumming ];
23 platforms = platforms.all;
24 };
25}