2012-01-09 11:25:42 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libcdio, libxml2, popt }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "vcdimager-0.7.24";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://gnu/vcdimager/vcdimager-0.7.24.tar.gz;
|
|
|
|
sha256 = "1526jxynslg07i50v3c3afhc8swbd4si8y6s8m3h1wrz6mkplp87";
|
|
|
|
};
|
|
|
|
|
2012-12-28 19:20:09 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2012-01-09 11:25:42 +01:00
|
|
|
|
|
|
|
buildInputs = [ libxml2 popt ];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ libcdio ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.gnu.org/software/vcdimager/;
|
2013-10-06 11:49:53 +02:00
|
|
|
description = "Full-featured mastering suite for authoring, disassembling and analyzing Video CDs and Super Video CDs";
|
2012-01-09 11:25:42 +01:00
|
|
|
platforms = stdenv.lib.platforms.gnu; # random choice
|
|
|
|
};
|
|
|
|
}
|