Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 29 lines 735 B view raw
1{ 2 buildGoModule, 3 fetchFromGitHub, 4 lib, 5}: 6 7buildGoModule { 8 pname = "sqlboiler-crbd"; 9 version = "0-unstable-2022-06-12"; 10 11 src = fetchFromGitHub { 12 owner = "glerchundi"; 13 repo = "sqlboiler-crdb"; 14 rev = "7b35c4d19c05fdc53d1efdcc074f20ee6b56f340"; 15 hash = "sha256-RlppCRYP7TlM1z1PiXtEVifNVxQHwLuoBXxgYIpUirE="; 16 }; 17 18 vendorHash = "sha256-N16GH8ZDyeWWBsaaG4RkJwzAbuQ7E8YjZAgVsfeECo4"; 19 20 doCheck = false; # requires a running testdb 21 22 meta = with lib; { 23 description = "CockroachDB generator for usage with SQLBoiler"; 24 mainProgram = "sqlboiler-crdb"; 25 homepage = "https://github.com/glerchundi/sqlboiler-crdb/"; 26 maintainers = with maintainers; [ dgollings ]; 27 platforms = platforms.unix; 28 }; 29}