about summary refs log tree commit diff
path: root/pkgs/by-name/es/esbuild-config/package.nix
blob: 6324add2b9343b685ccb0acf35834da9f68f3d87 (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
{ lib
, rustPlatform
, fetchFromGitHub
}:

rustPlatform.buildRustPackage rec {
  pname = "esbuild-config";
  version = "1.0.1";

  src = fetchFromGitHub {
    owner = "bpierre";
    repo = "esbuild-config";
    rev = "v${version}";
    hash = "sha256-u3LgecKfgPSN5xMyqBjeAn4/XswM3iEGbZ+JGrVF1Co=";
  };

  cargoHash = "sha256-Z7uYOjMNxsEmsEXDOIr1zIq4nCgHvHIqpRnRH037b8g=";

  meta = with lib; {
    description = "Config files for esbuild";
    homepage = "https://github.com/bpierre/esbuild-config";
    license = licenses.mit;
    maintainers = with maintainers; [ figsoda ];
    mainProgram = "esbuild-config";
  };
}