forked from mirrors/nixpkgs
lucene: remove builder.sh
This commit is contained in:
parent
92b2654605
commit
cb30fd980b
|
@ -1,6 +0,0 @@
|
|||
set -e
|
||||
source $stdenv/setup
|
||||
|
||||
tar zxvf $src
|
||||
mkdir -p $out
|
||||
mv $name/* $out
|
|
@ -1,16 +1,18 @@
|
|||
{lib, stdenv, fetchurl} :
|
||||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "lucene";
|
||||
version = "1.4.3";
|
||||
|
||||
builder = ./builder.sh;
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://archive.apache.org/dist/jakarta/lucene/${pname}-${version}.tar.gz";
|
||||
url = "https://archive.apache.org/dist/jakarta/lucene/lucene-${version}.tar.gz";
|
||||
sha256 = "1mxaxg65f7v8n60irjwm24v7hcisbl0srmpvcy1l4scs6rjj1awh";
|
||||
};
|
||||
|
||||
buildCommand = ''
|
||||
cp -r . $out/
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Java full-text search engine";
|
||||
platforms = platforms.unix;
|
||||
|
|
Loading…
Reference in a new issue