nixpkgs/pkgs/development/libraries/vcdimager/default.nix
Bjørn Forsman 083d0890f5 More description fixes
* Remove package name
* Start with upper case letter
* Remove trailing period

Also reword some descriptions and move some long descriptions to
longDescription.

I'm not touching generated packages.
2013-10-06 12:01:38 +02:00

23 lines
630 B
Nix

{ 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";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libxml2 popt ];
propagatedBuildInputs = [ libcdio ];
meta = {
homepage = http://www.gnu.org/software/vcdimager/;
description = "Full-featured mastering suite for authoring, disassembling and analyzing Video CDs and Super Video CDs";
platforms = stdenv.lib.platforms.gnu; # random choice
};
}