nixpkgs/pkgs/development/tools/stagit/default.nix

25 lines
586 B
Nix
Raw Normal View History

{ lib, stdenv, libgit2, fetchgit }:
stdenv.mkDerivation rec {
pname = "stagit";
2021-06-01 00:46:28 +00:00
version = "0.9.6";
src = fetchgit {
url = "git://git.codemadness.org/stagit";
rev = version;
2021-06-01 00:46:28 +00:00
sha256 = "sha256-0vkdxtKZv7LyEHKGPrB4uOI2lD74+haelEanq2sOjkE=";
};
makeFlags = [ "PREFIX=$(out)" ];
buildInputs = [ libgit2 ];
meta = with lib; {
description = "git static site generator";
2021-01-25 12:04:26 +00:00
homepage = "https://git.codemadness.org/stagit/file/README.html";
license = licenses.mit;
platforms = platforms.all;
2021-03-25 10:25:48 +00:00
maintainers = with maintainers; [ jb55 sikmir ];
};
}