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