1 { lib, stdenv, libgit2, fetchgit }:
3 stdenv.mkDerivation rec {
8 url = "git://git.codemadness.org/stagit";
10 sha256 = "sha256-mVYR8THGGfaTsx3aaSbQBxExRo87K47SD+PU5cZ8z58=";
13 makeFlags = [ "PREFIX=$(out)" ];
15 buildInputs = [ libgit2 ];
18 description = "git static site generator";
19 homepage = "https://git.codemadness.org/stagit/file/README.html";
20 license = licenses.mit;
21 platforms = platforms.all;
22 maintainers = with maintainers; [ jb55 sikmir ];