package.nix (648B)
1 { 2 lib, 3 stdenv, 4 fetchurl, 5 }: 6 7 stdenv.mkDerivation (finalAttrs: { 8 pname = "saait"; 9 version = "0.8"; 10 11 __structuredAttrs = true; 12 13 src = fetchurl { 14 url = "https://codemadness.org/releases/saait/saait-${finalAttrs.version}.tar.gz"; 15 hash = "sha256-ulYpErfzpSiE0pKyDroEdxmVQT5wFdNFT5Bf88AhBAQ="; 16 }; 17 18 installFlags = [ "PREFIX=$(out)" ]; 19 20 meta = { 21 description = "The most boring static page generator"; 22 homepage = "https://git.codemadness.org/saait/file/README.html"; 23 license = lib.licenses.isc; 24 maintainers = [ lib.maintainers.sikmir ]; 25 platforms = lib.platforms.linux; 26 skip.ci = stdenv.isDarwin; 27 }; 28 })
