nixpacks: init at 0.1.7 (#179932)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
Zoey de Souza Pessanha 2022-07-11 10:49:34 -03:00 committed by GitHub
parent c78023cbbf
commit f69e9bc2cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "nixpacks";
version = "0.1.7";
src = fetchFromGitHub {
owner = "railwayapp";
repo = pname;
rev = "v${version}";
sha256 = "sha256-UxdK2e5VYcOEYdZn0oGRFIVGiwnPixiZ3rOnqJDSQO8=";
};
cargoSha256 = "sha256-dJdPs4BJ1R2ZbGmGmvBerLPVqUHn5b/fz9C0kEnxA6U=";
# 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 ];
};
}

View File

@ -8085,6 +8085,8 @@ with pkgs;
netsniff-ng = callPackage ../tools/networking/netsniff-ng { };
nixpacks = callPackage ../applications/virtualization/nixpacks { };
nkeys = callPackage ../tools/system/nkeys { };
nyxt = callPackage ../applications/networking/browsers/nyxt { };