python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / martyr / default.nix
blob609033e22eadb36f5b1e1c65c48de906ada95b62
1 {lib, stdenv, fetchurl, ant, jdk}:
3 stdenv.mkDerivation rec {
4   pname = "martyr";
5   version = "0.3.9";
6   src = fetchurl {
7     url = "mirror://sourceforge/martyr/${pname}-${version}.tar.gz";
8     sha256 = "1ks8j413bcby345kmq1i7av8kwjvz5vxdn1zpv0p7ywxq54i4z59";
9   };
11   buildInputs = [ ant jdk ];
13   buildPhase = "ant";
15   installPhase = ''
16     mkdir -p "$out/share/java"
17     cp -v *.jar "$out/share/java"
18   '';
20   meta = {
21     description = "Java framework around the IRC protocol to allow application writers easy manipulation of the protocol and client state";
22     homepage = "http://martyr.sourceforge.net/";
23     license = lib.licenses.lgpl21;
24   };