nix-converter: init at 0-unstable-2025-04-14 (#403576)

authored by Marcus Ramberg and committed by GitHub bec54ccb a2d888f9

+38
+38
pkgs/by-name/ni/nix-converter/package.nix
··· 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 + }