Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 22 lines 541 B view raw
1{ lib, buildGoModule, fetchFromGitHub }: 2 3buildGoModule rec { 4 pname = "gojsontoyaml"; 5 version = "0.1.0"; 6 7 src = fetchFromGitHub { 8 owner = "brancz"; 9 repo = "gojsontoyaml"; 10 rev = "v${version}"; 11 sha256 = "sha256-ebxz2uTH7XwD3j6JnsfET6aCGYjvsCjow/sU9pagg50="; 12 }; 13 14 vendorSha256 = null; 15 16 meta = with lib; { 17 description = "Simply tool to convert json to yaml written in Go"; 18 homepage = "https://github.com/brancz/gojsontoyaml"; 19 license = licenses.mit; 20 maintainers = [ maintainers.bryanasdev000 ]; 21 }; 22}