Installation
System wide:
{
environment.systemPackages = with nix-casks.packages.${system}; [
graphql-ide # GraphQL IDE
];
}
Home Manager:
{
home.packages = with nix-casks.packages.${system}; [
graphql-ide # GraphQL IDE
];
}
Package Definition
{
"pname": "graphql-ide",
"version": "1.1.1",
"src": {
"url": "https://github.com/andev-software/graphql-ide/releases/download/v1.1.1/GraphQL.IDE.zip",
"sha256": "e7aa74f9dfc4874138d9fa74af33eb701130f5abe8ff70735c38c506f732408c"
},
"installPhase": [
"mkdir -p \"$out/Applications/GraphQL IDE.app\" && cp -r \"GraphQL IDE.app\" \"$out/Applications\""
],
"meta": {
"description": "IDE for exploring GraphQL APIs",
"homepage": "https://github.com/andev-software/graphql-ide"
}
}