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