martyr: fixed build, removed build.sh, added meta (see #23253)
This commit is contained in:
parent
8c0074dd9f
commit
4bfde8f5b4
@ -1,7 +0,0 @@
|
||||
source $stdenv/setup
|
||||
|
||||
mkdir -p $out
|
||||
unpackPhase
|
||||
cd $name
|
||||
$apacheAnt/bin/ant
|
||||
cp -R ./* $out
|
@ -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/;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user