This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
31 lines
672 B
Nix
31 lines
672 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "micro-httpd";
|
|
version = "20140814";
|
|
|
|
src = fetchurl {
|
|
url = "https://acme.com/software/micro_httpd/micro_httpd_14Aug2014.tar.gz";
|
|
sha256 = "0mlm24bi31s0s8w55i0sysv2nc1n2x4cfp6dm47slz49h2fz24rk";
|
|
};
|
|
|
|
preBuild = ''
|
|
makeFlagsArray=(BINDIR="$out/bin" MANDIR="$out/share/man/man8")
|
|
mkdir -p $out/bin
|
|
mkdir -p $out/share/man/man8
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "http://acme.com/software/micro_httpd/";
|
|
description = "Really small HTTP server";
|
|
license = lib.licenses.bsd2;
|
|
platforms = lib.platforms.unix;
|
|
maintainers = [ ];
|
|
mainProgram = "micro_httpd";
|
|
};
|
|
}
|