Skip to content

Commit 08b2bab

Browse files
jaredmontoyaAleksanaa
authored andcommitted
nix-converter: init at 0-unstable-2025-04-14
1 parent beddf55 commit 08b2bab

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
lib,
3+
buildGoModule,
4+
fetchFromGitHub,
5+
nix-update-script,
6+
}:
7+
8+
buildGoModule {
9+
pname = "nix-converter";
10+
version = "0-unstable-2025-04-14";
11+
12+
src = fetchFromGitHub {
13+
owner = "theobori";
14+
repo = "nix-converter";
15+
rev = "d06af43bf578f2650417600250e68782478ce98d";
16+
hash = "sha256-/HEKbE1tLCGGu4xopky/02OWRt23UUTPKQCdi7ThCX8=";
17+
};
18+
19+
vendorHash = "sha256-Ay1f9sk8RuJyOS7hl/lrscpxdlIgm9dMow/xTFoR+H4=";
20+
21+
ldflags = [
22+
"-s"
23+
"-w"
24+
];
25+
26+
passthru.updateScript = nix-update-script { };
27+
28+
meta = {
29+
description = "All-in-one converter configuration language to Nix and vice versa";
30+
homepage = "https://github.com/theobori/nix-converter";
31+
license = lib.licenses.mit;
32+
maintainers = with lib.maintainers; [
33+
theobori
34+
jaredmontoya
35+
];
36+
mainProgram = "nix-converter";
37+
};
38+
}

0 commit comments

Comments
 (0)