about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/qu/quicktype/package.nix
blob: c6dc593d061c06b131b56a0d6d9ddf50ae359546 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{ lib, buildNpmPackage, fetchFromGitHub, jq, quicktype, testers }:

buildNpmPackage rec {
  pname = "quicktype";
  version = "23.0.104"; # version from https://npm.im/quicktype

  src = fetchFromGitHub {
    owner = "glideapps";
    repo = "quicktype";
    rev = "916cd94a9d4fdeab870b6a12f42ad43ebaedf314"; # version not tagged
    hash = "sha256-PI9YgFVy7Mlln9+7IAU9vzyvK606PuAJ32st3NDwXIw=";
  };

  postPatch = ''
    cat <<< $(${jq}/bin/jq '.version = "${version}"' package.json) > package.json
  '';

  npmDepsHash = "sha256-RA4HVQfB/ge1aIKl9HiUT7vUM5n+Ro6N2D6xj1dgSu8=";

  postInstall = ''
    mv packages/ $out/lib/node_modules/quicktype/
  '';

  passthru.tests = {
    version = testers.testVersion { package = quicktype; };
  };

  meta = with lib; {
    description = "Generate types and converters from JSON, Schema, and GraphQL";
    homepage = "https://quicktype.io/";
    license = licenses.asl20;
    maintainers = [ maintainers.marsam ];
    mainProgram = "quicktype";
  };
}