summary refs log tree commit diff
path: root/pkgs/development/libraries/martyr/default.nix
blob: 609033e22eadb36f5b1e1c65c48de906ada95b62 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{lib, 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 = "Java framework around the IRC protocol to allow application writers easy manipulation of the protocol and client state";
    homepage = "http://martyr.sourceforge.net/";
    license = lib.licenses.lgpl21;
  };
}