Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 25 lines 669 B view raw
1{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config 2, cairo, gtk2, poppler }: 3 4stdenv.mkDerivation rec { 5 pname = "pdf2svg"; 6 version = "0.2.3"; 7 8 src = fetchFromGitHub { 9 owner = "db9052"; 10 repo = "pdf2svg"; 11 rev = "v${version}"; 12 sha256 = "14ffdm4y26imq99wjhkrhy9lp33165xci1l5ndwfia8hz53bl02k"; 13 }; 14 15 nativeBuildInputs = [ autoreconfHook pkg-config ]; 16 buildInputs = [ cairo poppler gtk2 ]; 17 18 meta = with lib; { 19 description = "PDF converter to SVG format"; 20 homepage = "http://www.cityinthesky.co.uk/opensource/pdf2svg"; 21 license = licenses.gpl2; 22 maintainers = [ maintainers.ianwookim ]; 23 platforms = platforms.unix; 24 }; 25}