summary refs log tree commit diff
path: root/pkgs/development/libraries/vcdimager/default.nix
blob: 48ad33424f60984b3e1ad21cb5f3b84b3aba9d56 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, lib, fetchurl, pkgconfig, libcdio, libxml2, popt }:

stdenv.mkDerivation rec {
  name = "vcdimager-2.0.1";

  src = fetchurl {
    url = "mirror://gnu/vcdimager/${name}.tar.gz";
    sha256 = "0ypnb1vp49nmzp5571ynlz6n1gh90f23w3z4x95hb7c2p7pmylb7";
  };

  nativeBuildInputs = [ pkgconfig ];

  buildInputs = [ libxml2 popt ];

  propagatedBuildInputs = [ libcdio ];

  meta = with lib; {
    homepage = http://www.gnu.org/software/vcdimager/;
    description = "Full-featured mastering suite for authoring, disassembling and analyzing Video CDs and Super Video CDs";
    platforms = platforms.gnu; # random choice
    license = licenses.gpl2;
  };
}