summary refs log tree commit diff
path: root/pkgs/development/libraries/martyr/default.nix
blob: 2d37a2506c4feff39de85e8075f174eb9ccdc3f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{stdenv, fetchurl, apacheAnt}:

stdenv.mkDerivation {
	name = "martyr-0.3.9";
	builder = ./builder.sh;
	src = fetchurl {
		url = "mirror://sourceforge/martyr/martyr-0.3.9.tar.gz";
		md5 = "b716a6aaabd5622b65d6126438766260";
	};
	inherit stdenv apacheAnt;
}