Merge pull request #74724 from etu/paps-0-7-1

paps: 0.7.0 -> 0.7.1
This commit is contained in:
Lancelot SIX 2019-11-30 14:44:25 +01:00 committed by GitHub
commit 5bf248bd64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,18 +1,18 @@
{ stdenv, fetchFromGitHub
, autoconf, automake, pkgconfig, pango }:
, autoconf, automake, pkgconfig, intltool, pango }:
stdenv.mkDerivation rec {
pname = "paps";
version = "0.7.0";
version = "0.7.1";
src = fetchFromGitHub {
owner = "dov";
repo = pname;
rev = version;
sha256 = "1f0qcawak76zk2xypipb6sy4bd8mixlrjby851x216a7f6z8fd4y";
rev = "v${version}";
sha256 = "129wpm2ayxs6qfh2761d4x9c034ivb2bcmmcnl56qs4448qb9495";
};
nativeBuildInputs = [ autoconf automake pkgconfig ];
nativeBuildInputs = [ autoconf automake pkgconfig intltool ];
buildInputs = [ pango ];
preConfigure = ''
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Pango to PostScript converter";
homepage = https://github.com/dov/paps;
homepage = "https://github.com/dov/paps";
license = licenses.lgpl2;
maintainers = with maintainers; [ etu ];
platforms = platforms.linux;