File tree Expand file tree Collapse file tree 1 file changed +38
-0
lines changed
pkgs/by-name/ni/nix-converter Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments