commit
6382266e58
22
pkgs/tools/cd-dvd/cuetools/default.nix
Normal file
22
pkgs/tools/cd-dvd/cuetools/default.nix
Normal file
@ -0,0 +1,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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -579,6 +579,8 @@ let
|
|||||||
|
|
||||||
cowsay = callPackage ../tools/misc/cowsay { };
|
cowsay = callPackage ../tools/misc/cowsay { };
|
||||||
|
|
||||||
|
cuetools = callPackage ../tools/cd-dvd/cuetools { };
|
||||||
|
|
||||||
unifdef = callPackage ../development/tools/misc/unifdef { };
|
unifdef = callPackage ../development/tools/misc/unifdef { };
|
||||||
|
|
||||||
"unionfs-fuse" = callPackage ../tools/filesystems/unionfs-fuse { };
|
"unionfs-fuse" = callPackage ../tools/filesystems/unionfs-fuse { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user