mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
30 lines
657 B
Nix
30 lines
657 B
Nix
{ stdenv, fetchFromGitHub
|
|
, autoconf, automake, pkgconfig, pango }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "paps";
|
|
version = "0.7.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dov";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1f0qcawak76zk2xypipb6sy4bd8mixlrjby851x216a7f6z8fd4y";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoconf automake pkgconfig ];
|
|
buildInputs = [ pango ];
|
|
|
|
preConfigure = ''
|
|
./autogen.sh
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Pango to PostScript converter";
|
|
homepage = https://github.com/dov/paps;
|
|
license = licenses.lgpl2;
|
|
maintainers = with maintainers; [ etu ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|