nixpacks: init at 0.1.7 (#179932)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
c78023cbbf
commit
f69e9bc2cc
25
pkgs/applications/virtualization/nixpacks/default.nix
Normal file
25
pkgs/applications/virtualization/nixpacks/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user