default.nix (604B)
1 { 2 lib, 3 fetchFromGitHub, 4 php, 5 }: 6 7 php.buildComposerProject2 (finalAttrs: { 8 pname = "rodnik"; 9 version = "2025.08.26"; 10 11 src = fetchFromGitHub { 12 owner = "dwcoaching"; 13 repo = "rodnik"; 14 rev = "07713413efe57a5cbffff21100e2597fcbf2467c"; 15 hash = "sha256-sxGC18GrgIm9/a0ZEtJIc8JTTRjnieuE40EiCqNoqKs="; 16 }; 17 18 vendorHash = "sha256-zOFjjOYVcUuQfkqIMmbP+R+QlvjRB/8oIWeXgLoWlfw="; 19 20 meta = { 21 description = "Rodnik.today"; 22 homepage = "https://github.com/dwcoaching/rodnik"; 23 license = lib.licenses.free; 24 maintainers = [ lib.maintainers.sikmir ]; 25 skip.ci = true; 26 }; 27 })