summary refs log tree commit diff
path: root/pkgs/development/libraries/vcdimager/default.nix
blob: e93f071aefacf4a4d1e6acb8eb8ef357b299b676 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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";
  };

  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
  };
}