httpunit: remove builder.sh (#147110)

This commit is contained in:
Felix Bühler 2021-11-24 04:41:13 +01:00 committed by GitHub
parent e75245614e
commit 5201be2d3a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 11 deletions

View file

@ -1,5 +0,0 @@
source $stdenv/setup
$unzip/bin/unzip $src
mkdir $out
mv $name/* $out/

View file

@ -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";