Skip to content

Commit

Permalink
hasura-batteries: init at 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jpetrucciani committed Mar 7, 2024
1 parent a4c7d59 commit db91c65
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions pkgs/server/hasura-batteries.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:

buildGoModule rec {
pname = "hasura-batteries";
version = "0.3.0";

src = fetchFromGitHub {
owner = "RocketsGraphQL";
repo = "hasura-batteries";
rev = "v${version}";
hash = "sha256-BRxsJ35imucFGt0t39i9kxbDc38AbR/XTIps2rKf248=";
};

vendorHash = "sha256-OdYmaDK/XY1MNXoEl9HKYg20KukE7auHmilmTjIGMYc=";
doCheck = false;

ldflags = [ "-s" "-w" ];

meta = with lib; {
description = "";
homepage = "https://github.com/RocketsGraphQL/hasura-batteries";
# license = licenses.unfree;
maintainers = with maintainers; [ jpetrucciani ];
mainProgram = "hasura-batteries";
};
}

0 comments on commit db91c65

Please sign in to comment.