httpunit: remove builder.sh (#147110)
This commit is contained in:
parent
e75245614e
commit
5201be2d3a
@ -1,5 +0,0 @@
|
||||
source $stdenv/setup
|
||||
|
||||
$unzip/bin/unzip $src
|
||||
mkdir $out
|
||||
mv $name/* $out/
|
@ -1,15 +1,17 @@
|
||||
{lib, stdenv, fetchurl, unzip} :
|
||||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "httpunit-1.7";
|
||||
builder = ./builder.sh;
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "httpunit";
|
||||
version = "1.7";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/httpunit/httpunit-1.7.zip";
|
||||
url = "mirror://sourceforge/httpunit/httpunit-${version}.zip";
|
||||
sha256 = "09gnayqgizd8cjqayvdpkxrc69ipyxawc96aznfrgdhdiwv8l5zf";
|
||||
};
|
||||
|
||||
inherit unzip;
|
||||
buildCommand = ''
|
||||
cp ./* $out
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "http://httpunit.sourceforge.net";
|
||||
|
Loading…
Reference in New Issue
Block a user