summary refs log blame commit diff
path: root/pkgs/development/libraries/martyr/default.nix
blob: cec9e5adc296a00aa3f2b2f9b468049389b32b0b (plain) (tree)
1
2
3
4
5
6
7
8
9
                             
 
                         
                         
                    
                        
                                                                               
                                                                                
          












                                                                                                                                                       
                                         
    
 
{stdenv, fetchurl, ant, jdk}:

stdenv.mkDerivation rec {
	pname = "martyr";
  version = "0.3.9";
	src = fetchurl {
		url = "mirror://sourceforge/martyr/${pname}-${version}.tar.gz";
		sha256 = "1ks8j413bcby345kmq1i7av8kwjvz5vxdn1zpv0p7ywxq54i4z59";
	};

  buildInputs = [ ant jdk ];

  buildPhase = "ant";

  installPhase = ''
    mkdir -p "$out/share/java"
    cp -v *.jar "$out/share/java"
  '';

  meta = {
    description = "Martyr is a Java framework around the IRC protocol to allow application writers easy manipulation of the protocol and client state";
    homepage = http://martyr.sourceforge.net/;
    license = stdenv.lib.licenses.lgpl21;
  };
}