2022-07-14 12:49:19 +00:00
|
|
|
{ lib, rustPlatform, fetchFromGitHub }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "nixpacks";
|
2023-03-24 00:07:29 +00:00
|
|
|
version = "1.5.1";
|
2022-07-14 12:49:19 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "railwayapp";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2023-03-24 00:07:29 +00:00
|
|
|
sha256 = "sha256-eAniM4o7TshGhO5jGrCZz+Rs5n5Q24tvIWMWebKAWAs=";
|
2022-07-14 12:49:19 +00:00
|
|
|
};
|
|
|
|
|
2023-03-24 00:07:29 +00:00
|
|
|
cargoHash = "sha256-0Y4hHuWB7NY7rRJImNIrxlEffrT9055ThQGqJlMeDMM=";
|
2022-07-14 12:49:19 +00:00
|
|
|
|
|
|
|
# skip test due FHS dependency
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "App source + Nix packages + Docker = Image Resources";
|
|
|
|
homepage = "https://github.com/railwayapp/nixpacks";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.zoedsoupe ];
|
|
|
|
};
|
|
|
|
}
|