3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/cd-dvd/cuetools/default.nix

23 lines
641 B
Nix
Raw Normal View History

2013-03-17 23:18:36 +00:00
{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";
2013-03-17 23:18:36 +00:00
homepage = https://github.com/svend/cuetools;
platforms = stdenv.lib.platforms.all;
license = stdenv.lib.licenses.gpl2;
maintainers = with stdenv.lib.maintainers; [ jcumming ];
2013-03-17 23:18:36 +00:00
};
}