summary refs log tree commit diff
path: root/pkgs/applications/misc/zathura/ps
diff options
context:
space:
mode:
authorCharles Strahan <charles.c.strahan@gmail.com>2015-05-06 10:34:12 -0400
committerCharles Strahan <charles.c.strahan@gmail.com>2015-05-06 10:36:30 -0400
commitae8c6092e74138c6288ebab41933fc5ef512634f (patch)
tree2c8f73bcdb98c3120fe978d13196b4b826c53016 /pkgs/applications/misc/zathura/ps
parente0bec9ece5b27494c9870ad2007f4ad7397de16f (diff)
downloadnixpkgs-ae8c6092e74138c6288ebab41933fc5ef512634f.tar
nixpkgs-ae8c6092e74138c6288ebab41933fc5ef512634f.tar.gz
nixpkgs-ae8c6092e74138c6288ebab41933fc5ef512634f.tar.bz2
nixpkgs-ae8c6092e74138c6288ebab41933fc5ef512634f.tar.lz
nixpkgs-ae8c6092e74138c6288ebab41933fc5ef512634f.tar.xz
nixpkgs-ae8c6092e74138c6288ebab41933fc5ef512634f.tar.zst
nixpkgs-ae8c6092e74138c6288ebab41933fc5ef512634f.zip
pwmt: update packages (zathura, jumanji, girara)
This updates (and fixes) the mupdf backend for zathura, and bumps the
versions for other related packages.
Diffstat (limited to 'pkgs/applications/misc/zathura/ps')
-rw-r--r--pkgs/applications/misc/zathura/ps/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/misc/zathura/ps/default.nix b/pkgs/applications/misc/zathura/ps/default.nix
index eef02001601..31ffbf628dd 100644
--- a/pkgs/applications/misc/zathura/ps/default.nix
+++ b/pkgs/applications/misc/zathura/ps/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, pkgconfig, gtk, zathura_core, girara, libspectre, gettext }:
+{ stdenv, lib, fetchurl, pkgconfig, gtk, zathura_core, girara, libspectre, gettext }:
 
 stdenv.mkDerivation rec {
   name = "zathura-ps-0.2.2";
@@ -14,16 +14,16 @@ stdenv.mkDerivation rec {
 
   makeFlags = "PREFIX=$(out) PLUGINDIR=$(out)/lib";
 
-  meta = {
+  meta = with lib; {
     homepage = http://pwmt.org/projects/zathura/;
     description = "A zathura PS plugin";
     longDescription = ''
       The zathura-ps plugin adds PS support to zathura by using the
       libspectre library.
       '';
-    license = stdenv.lib.licenses.zlib;
-    platforms = stdenv.lib.platforms.linux;
-    maintainers = [ stdenv.lib.maintainers.garbas ];
+    license = licenses.zlib;
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ cstrahan garbas ];
   };
 }