Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / virtualization / nixpacks / default.nix
blobe35a5d16a49dfd6154dd6fdaa02dd3401fbc6197
1 { lib, rustPlatform, fetchFromGitHub }:
3 rustPlatform.buildRustPackage rec {
4   pname = "nixpacks";
5   version = "1.19.0";
7   src = fetchFromGitHub {
8     owner = "railwayapp";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-yeZGhE+ImWXW3HPpAo+E1GOSEwPr7yK78XVmCocGqH4=";
12   };
14   cargoHash = "sha256-xqKYd80PCM7Rnj+9dV2XjigE4sweOnL4HfOQiOYzCEQ=";
16   # skip test due FHS dependency
17   doCheck = false;
19   meta = with lib; {
20     description = "App source + Nix packages + Docker = Image Resources";
21     homepage = "https://github.com/railwayapp/nixpacks";
22     license = licenses.mit;
23     maintainers = [ maintainers.zoedsoupe ];
24   };