main
1{
2 lib,
3 buildGoModule,
4 fetchgit,
5}:
6
7buildGoModule (finalAttrs: {
8 pname = "ram";
9 version = "0.3.2";
10
11 src = fetchgit {
12 url = "https://git.sr.ht/~vdemeester/ram";
13 rev = "v${finalAttrs.version}";
14 hash = "sha256-2Vn8alPlVM5j0VSCZwbmnWdZqfd4qp/g29R3lpLhXv4=";
15 };
16 vendorHash = null;
17
18 meta = {
19 description = "A golang opinionated continuous testing tool";
20 homepage = "https://git.sr.ht/~vdemeester/ram";
21 license = lib.licenses.asl20;
22 platforms = lib.platforms.unix;
23 mainProgram = "ram";
24 };
25})