aboutsummaryrefslogtreecommitdiff
path: root/pkgs/tools/typesetting/fop
diff options
context:
space:
mode:
authorndowens <ndowens04@gmail.com>2017-02-28 16:06:01 -0600
committerBjørn Forsman <bjorn.forsman@gmail.com>2017-02-28 23:29:31 +0100
commit0e0af18b57201c88531d4c56e511da367ea8deef (patch)
tree3f93258c6f62338e33976f1314ac68dc133d5a55 /pkgs/tools/typesetting/fop
parente0ed902b50197f3dff14118468cc365766f9909b (diff)
fop: 1.1 -> 2.1
Diffstat (limited to 'pkgs/tools/typesetting/fop')
-rw-r--r--pkgs/tools/typesetting/fop/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/tools/typesetting/fop/default.nix b/pkgs/tools/typesetting/fop/default.nix
index 473b23fe2627..aff11fd61279 100644
--- a/pkgs/tools/typesetting/fop/default.nix
+++ b/pkgs/tools/typesetting/fop/default.nix
@@ -1,11 +1,12 @@
{ fetchurl, stdenv, ant, jdk }:
stdenv.mkDerivation rec {
- name = "fop-1.1";
+ name = "fop-${version}";
+ version = "2.1";
src = fetchurl {
url = "mirror://apache/xmlgraphics/fop/source/${name}-src.tar.gz";
- sha256 = "08i56d57w5dl5bqchr34x9165hvi5h4bhiflxhi0a4wd56rlq5jq";
+ sha256 = "165rx13q47l6qc29ppr7sg1z26vw830s3rkklj5ap7wgvy0ivbz5";
};
buildInputs = [ ant jdk ];
@@ -45,6 +46,6 @@ stdenv.mkDerivation rec {
homepage = http://xmlgraphics.apache.org/fop/;
license = licenses.asl20;
platforms = platforms.linux;
- maintainers = [ maintainers.bjornfor ];
+ maintainers = with maintainers; [ bjornfor ndowens ];
};
}