mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
Add GNU vcdimager
svn path=/nixpkgs/trunk/; revision=31449
This commit is contained in:
parent
c403364c06
commit
c80ed42cf1
22
pkgs/development/libraries/vcdimager/default.nix
Normal file
22
pkgs/development/libraries/vcdimager/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ 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";
|
||||
};
|
||||
|
||||
buildNativeInputs = [ pkgconfig ];
|
||||
|
||||
buildInputs = [ libxml2 popt ];
|
||||
|
||||
propagatedBuildInputs = [ libcdio ];
|
||||
|
||||
meta = {
|
||||
homepage = http://www.gnu.org/software/vcdimager/;
|
||||
description = "GNU VCDImager is a full-featured mastering suite for authoring, disassembling and analyzing Video CDs and Super Video CDs.";
|
||||
platforms = stdenv.lib.platforms.gnu; # random choice
|
||||
};
|
||||
}
|
|
@ -4638,6 +4638,8 @@ let
|
|||
|
||||
vamp = callPackage ../development/libraries/audio/vamp { };
|
||||
|
||||
vcdimager = callPackage ../development/libraries/vcdimager { };
|
||||
|
||||
vigra = callPackage ../development/libraries/vigra { };
|
||||
|
||||
vmime = callPackage ../development/libraries/vmime { };
|
||||
|
|
Loading…
Reference in a new issue