My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/tools/stagit/default.nix

24 lines
584 B

{ lib, stdenv, libgit2, fetchgit }:
stdenv.mkDerivation rec {
pname = "stagit";
version = "1.1";
src = fetchgit {
url = "git://git.codemadness.org/stagit";
rev = version;
sha256 = "sha256-wnXvK1OYd6FxJuZai5a0Mvz4gWpjlhLgGrcKlvn2lbs=";
};
makeFlags = [ "PREFIX=$(out)" ];
buildInputs = [ libgit2 ];
meta = with lib; {
description = "git static site generator";
homepage = "https://git.codemadness.org/stagit/file/README.html";
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ jb55 sikmir ];
};
}