paps: 0.7.0 -> 0.7.1

Release notes: https://github.com/dov/paps/releases/tag/v0.7.1
This commit is contained in:
Elis Hirwing 2019-11-30 08:34:30 +01:00
parent ceb3f864a3
commit b4bbee476c
No known key found for this signature in database
GPG key ID: D57EFA625C9A925F

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;