nixpkgs/pkgs/applications/misc/slweb/default.nix
2023-05-31 17:01:52 +00:00

36 lines
754 B
Nix

{ lib
, stdenv
, fetchFromSourcehut
, redo-apenwarr
}:
stdenv.mkDerivation rec {
pname = "slweb";
version = "0.5.6";
src = fetchFromSourcehut {
owner = "~strahinja";
repo = pname;
rev = "v${version}";
sha256 = "sha256-2jvHgFPnI/Uoa5s+MF3BLTA2I3WXYrsEi+XyImxx6BA=";
};
nativeBuildInputs = [ redo-apenwarr ];
installPhase = ''
runHook preInstall
PREFIX=$out redo install
runHook postInstall
'';
enableParallelBuilding = true;
meta = with lib; {
description = "A static website generator which aims at being simplistic";
homepage = "https://strahinja.srht.site/slweb/";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ GaetanLepage ];
};
}