summary refs log tree commit diff
path: root/pkgs/applications/networking/browsers/netsurf/libsvgtiny.nix
blob: 11d81bacb12682ec732f5ac50a1aaa79d0057211 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
args: with args;
stdenv.mkDerivation {
  name = "libsvgtiny-devel";

  src = sourceByName "libsvgtiny";

  installPhase = "make PREFIX=$out install";
  buildInputs = [pkgconfig gperf libxml2];

  meta = { 
    description = "implementation of SVG Tiny, written in C";
    homepage = http://www.netsurf-browser.org/projects/libsvgtiny/;
    license = "MIT";
    maintainers = [args.lib.maintainers.marcweber];
    platforms = args.lib.platforms.linux;
  };
}