default.nix (487B)
1 { stdenv, lib, buildGoModule, fetchgit }: 2 3 buildGoModule rec { 4 name = "ram-${version}"; 5 version = "0.3.2"; 6 rev = "v${version}"; 7 8 src = fetchgit { 9 inherit rev; 10 url = "https://git.sr.ht/~vdemeester/ram"; 11 sha256 = "1zjyw699cxylvgh9zakqyylmjrwxwq36g0jls5iwwm75admgqnfr"; 12 }; 13 vendorHash = null; 14 15 meta = { 16 description = "A golang opiniated continuous testing tool 🐏"; 17 homepage = "https://git.sr.ht/~vdemeester/ram"; 18 license = lib.licenses.asl20; 19 }; 20 }