nixpkgs/pkgs/development/libraries/vcdimager/default.nix

26 lines
785 B
Nix
Raw Normal View History

{ stdenv, lib, fetchurl, pkg-config, libcdio, libxml2, popt
2018-05-01 04:30:42 +00:00
, libiconv, darwin }:
2018-02-24 20:38:12 +00:00
stdenv.mkDerivation rec {
name = "vcdimager-2.0.1";
src = fetchurl {
2018-02-24 20:38:12 +00:00
url = "mirror://gnu/vcdimager/${name}.tar.gz";
sha256 = "0ypnb1vp49nmzp5571ynlz6n1gh90f23w3z4x95hb7c2p7pmylb7";
};
nativeBuildInputs = [ pkg-config ];
2018-05-01 04:30:42 +00:00
buildInputs = [ libxml2 popt libiconv ]
++ lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ IOKit DiskArbitration ]);
propagatedBuildInputs = [ libcdio ];
2018-02-24 20:38:12 +00:00
meta = with lib; {
homepage = "https://www.gnu.org/software/vcdimager/";
description = "Full-featured mastering suite for authoring, disassembling and analyzing Video CDs and Super Video CDs";
2018-05-01 04:30:42 +00:00
platforms = platforms.unix;
2018-02-24 20:38:12 +00:00
license = licenses.gpl2;
};
}