lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v206 23 lines 422 B view raw
1{stdenv, fetchurl}: 2 3stdenv.mkDerivation { 4 name = "jikespg-1.3"; 5 6 src = fetchurl { 7 url = mirror://sourceforge/jikes/jikespg-1.3.tar.gz; 8 md5 = "eba183713d9ae61a887211be80eeb21f"; 9 }; 10 11 sourceRoot = "jikespg/src"; 12 13 installPhase = 14 '' 15 mkdir -p $out/bin 16 cp jikespg $out/bin 17 ''; 18 19 meta = { 20 homepage = http://jikes.sourceforge.net/; 21 description = "The Jikes Parser Generator"; 22 }; 23}