Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 pname = "lucene"; 5 version = "1.4.3"; 6 7 src = fetchurl { 8 url = "https://archive.apache.org/dist/jakarta/lucene/lucene-${version}.tar.gz"; 9 sha256 = "1mxaxg65f7v8n60irjwm24v7hcisbl0srmpvcy1l4scs6rjj1awh"; 10 }; 11 12 buildCommand = '' 13 cp -r . $out/ 14 ''; 15 16 meta = with lib; { 17 description = "Java full-text search engine"; 18 platforms = platforms.unix; 19 license = licenses.asl20; 20 }; 21}