about summary refs log tree commit diff
path: root/pkgs/development/tools/parsing/jikespg
diff options
context:
space:
mode:
authorPascal Wittmann <mail@pascal-wittmann.de>2016-11-20 16:25:26 +0100
committerPascal Wittmann <mail@pascal-wittmann.de>2016-11-20 16:36:54 +0100
commit36657f586fb07b02936521d909880046850d8bdd (patch)
treef3b067a1cb11d89905c75bf2b4235e443d16e7f5 /pkgs/development/tools/parsing/jikespg
parent1416ed7b0819bdb3ca1fe2b95ee88d9b23606d86 (diff)
jikespg: convert md5 to sha256 and adopt it
Diffstat (limited to 'pkgs/development/tools/parsing/jikespg')
-rw-r--r--pkgs/development/tools/parsing/jikespg/default.nix12
1 files changed, 7 insertions, 5 deletions
diff --git a/pkgs/development/tools/parsing/jikespg/default.nix b/pkgs/development/tools/parsing/jikespg/default.nix
index 7cfb39ebdedca..6f0eb3735ffbb 100644
--- a/pkgs/development/tools/parsing/jikespg/default.nix
+++ b/pkgs/development/tools/parsing/jikespg/default.nix
@@ -1,11 +1,11 @@
 {stdenv, fetchurl}:
 
-stdenv.mkDerivation {
+stdenv.mkDerivation rec {
   name = "jikespg-1.3";
 
   src = fetchurl {
-    url = mirror://sourceforge/jikes/jikespg-1.3.tar.gz;
-    md5 = "eba183713d9ae61a887211be80eeb21f";
+    url = "mirror://sourceforge/jikes/${name}.tar.gz";
+    sha256 = "083ibfxaiw1abxmv1crccx1g6sixkbyhxn2hsrlf6fwii08s6rgw";
   };
 
   sourceRoot = "jikespg/src";
@@ -16,9 +16,11 @@ stdenv.mkDerivation {
       cp jikespg $out/bin
     '';
 
-  meta = {
+  meta = with stdenv.lib; {
     homepage = http://jikes.sourceforge.net/;
     description = "The Jikes Parser Generator";
-    platforms = stdenv.lib.platforms.linux;
+    platforms = platforms.linux;
+    license = licenses.ipl10;
+    maintainers = with maintainers; [ pSub ];
   };
 }