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