mini-httpd: update to version 1.2
This commit is contained in:
parent
1b4fc7a095
commit
f1b54f8ee2
1 changed files with 8 additions and 6 deletions
|
@ -1,14 +1,16 @@
|
|||
{ stdenv, fetchurl, boost }:
|
||||
{ stdenv, fetchurl, boostHeaders }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "mini-httpd-1.1";
|
||||
stdenv.mkDerivation rec {
|
||||
name = "mini-httpd-1.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://savannah/mini-httpd/mini-httpd-1.1.tar.gz";
|
||||
sha256 = "12hqvh67hgxmc9b3fhb8gb5ash7j6f7d0mxv47zkmjl7k3vw3ny7";
|
||||
url = "mirror://savannah/mini-httpd/${name}.tar.gz";
|
||||
sha256 = "1547312rg2phxwny9vm1bkyid251n7wy4p1mgs6f5yq6ypwrsr6p";
|
||||
};
|
||||
|
||||
buildInputs = [ boost ];
|
||||
buildInputs = [ boostHeaders ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = {
|
||||
homepage = "http://mini-httpd.nongnu.org/";
|
||||
|
|
Loading…
Reference in a new issue