biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / gqlint / default.nix
blob18fc0cc624b76f68b4b9d7f1443ad2474968e586
1 { lib
2 , buildNpmPackage
3 , fetchFromGitHub
4 }:
6 buildNpmPackage rec {
7   pname = "gqlint";
8   version = "1.8.0";
10   src = fetchFromGitHub {
11     owner = "happylinks";
12     repo = "gqlint";
13     rev = "v${version}";
14     hash = "sha256-m/Y7i3+93UdPnKQlZUHgtRbfSmJ1xYjao+bU+zxMgHw=";
15   };
17   npmDepsHash = "sha256-Fc5RbBqrJB7KSqLgTmIsPf3MK2n7vef/UVeFqH0o7mE=";
19   dontNpmBuild = true;
21   meta = {
22     description = "GraphQL linter";
23     homepage = "https://github.com/happylinks/gqlint";
24     license = lib.licenses.mit;
25     mainProgram = "gqlint";
26     maintainers = with lib.maintainers; [ hardselius ];
27   };