martyr: fixed build, removed build.sh, added meta (see #23253)

This commit is contained in:
Willi Butz 2017-03-20 22:09:59 +01:00 committed by Tuomas Tynkkynen
parent 8c0074dd9f
commit 4bfde8f5b4
2 changed files with 19 additions and 13 deletions

View File

@ -1,7 +0,0 @@
source $stdenv/setup
mkdir -p $out
unpackPhase
cd $name
$apacheAnt/bin/ant
cp -R ./* $out

View File

@ -1,11 +1,24 @@
{stdenv, fetchurl, apacheAnt}:
{stdenv, fetchurl, ant, jdk}:
stdenv.mkDerivation {
name = "martyr-0.3.9";
builder = ./builder.sh;
stdenv.mkDerivation rec {
name = "martyr-${version}";
version = "0.3.9";
src = fetchurl {
url = "mirror://sourceforge/martyr/martyr-0.3.9.tar.gz";
url = "mirror://sourceforge/martyr/${name}.tar.gz";
sha256 = "1ks8j413bcby345kmq1i7av8kwjvz5vxdn1zpv0p7ywxq54i4z59";
};
inherit stdenv apacheAnt;
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/;
};
}