nixpkgs/pkgs/tools/networking/weighttp/default.nix

19 lines
441 B
Nix
Raw Normal View History

{ stdenv, fetchgit, python, libev, wafHook }:
stdenv.mkDerivation rec {
name = "weighttp-${version}";
version = "0.4";
src = fetchgit {
url = https://git.lighttpd.net/weighttp.git;
rev = "refs/tags/weighttp-${version}";
sha256 = "14yjmdx9p8g8c3zlrx5qid8k156lsagfwhl3ny54162nxjf7kzgr";
2013-03-29 14:04:59 +00:00
};
nativeBuildInputs = [ wafHook ];
2013-03-29 14:04:59 +00:00
buildInputs = [ python libev ];
meta = {
platforms = stdenv.lib.platforms.unix;
};
2013-03-29 14:04:59 +00:00
}