Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
34 lines
776 B
Nix
34 lines
776 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
stdenv,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "kwakd";
|
|
version = "0.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fetchinson";
|
|
repo = "kwakd";
|
|
rev = "acdf0e1491204ae30622a60fde0bcae4769f78be";
|
|
sha256 = "1inf9ngrbxmkkdhqf1xday12nf0hxjxlx1810phkmivyyp6fl3nj";
|
|
};
|
|
|
|
postInstall = ''
|
|
serviceDir=$out/share/dbus-1/system-services
|
|
mkdir -p $serviceDir
|
|
cp kwakd.service $serviceDir/
|
|
substituteInPlace $serviceDir/kwakd.service \
|
|
--replace "kwakd -p 80" "$out/bin/kwakd -p 80"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Super small webserver that serves blank pages";
|
|
mainProgram = "kwakd";
|
|
license = licenses.gpl2Only;
|
|
maintainers = [ maintainers.nicknovitski ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|