summary refs log tree commit diff
path: root/pkgs/tools/cd-dvd/cuetools/default.nix
blob: 7de503adc074593c2bf2692e485677ab85fe9880 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{stdenv, fetchurl, automake, autoconf, flex, bison }:

stdenv.mkDerivation {
  name = "cuetools-1.3.1";

  src = fetchurl {
    url = https://github.com/svend/cuetools/archive/cuetools-1.3.1.tar.gz;
    sha256 = "1cap3wl0mlcqrjywpz46003w8jws05rr3r87pzqkz1g89v9459dg";
  };

  preConfigure = "autoreconf -fiv";

  buildInputs = [ automake autoconf flex bison ]; 

  meta = {
    description = "cd/dvd cue and toc file parsers and utilities";
    homepage = https://github.com/svend/cuetools;
    platforms = stdenv.lib.platforms.all;
    license = stdenv.lib.licenses.gpl2;
    maintainers = with stdenv.lib.maintainers; [ jcumming ];
  };
}