lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

kwakd: init at 0.5

+30
+28
pkgs/servers/kwakd/default.nix
··· 1 + { lib, fetchFromGitHub, stdenv }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "kwakd-${version}"; 5 + version = "0.5"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "fetchinson"; 9 + repo = "kwakd"; 10 + rev = "acdf0e1491204ae30622a60fde0bcae4769f78be"; 11 + sha256 = "1inf9ngrbxmkkdhqf1xday12nf0hxjxlx1810phkmivyyp6fl3nj"; 12 + }; 13 + 14 + postInstall = '' 15 + serviceDir=$out/share/dbus-1/system-services 16 + mkdir -p $serviceDir 17 + cp kwakd.service $serviceDir/ 18 + substituteInPlace $serviceDir/kwakd.service \ 19 + --replace "kwakd -p 80" "$out/bin/kwakd -p 80" 20 + ''; 21 + 22 + meta = with lib; { 23 + description = "A super small webserver that serves blank pages"; 24 + license = licenses.gpl2; 25 + maintainers = [ maintainers.nicknovitski ]; 26 + platforms = platforms.unix; 27 + }; 28 + }
+2
pkgs/top-level/all-packages.nix
··· 533 533 534 534 oracle-instantclient = callPackage ../development/libraries/oracle-instantclient { }; 535 535 536 + kwakd = callPackage ../servers/kwakd { }; 537 + 536 538 kwm = callPackage ../os-specific/darwin/kwm { }; 537 539 538 540 khd = callPackage ../os-specific/darwin/khd {