2022-11-06T05:01:54 nixpacks 0.11.6 -> 0.12.2 https://github.com/railwayapp/nixpacks/releases 2022-11-06T05:01:57 attrpath: nixpacks 2022-11-06T05:01:57 Checking auto update branch... 2022-11-06T05:01:57 No auto update branch exists 2022-11-06T05:01:57 Old version 0.11.6" not present in master derivation file with contents: { lib, rustPlatform, fetchFromGitHub }: rustPlatform.buildRustPackage rec { pname = "nixpacks"; version = "0.12.2"; src = fetchFromGitHub { owner = "railwayapp"; repo = pname; rev = "v${version}"; sha256 = "sha256-l6QIP/GIm7QMWLjYQJ3yuT7mWriowcND32EUuiNfvNA="; }; cargoSha256 = "sha256-t2kxpiSSYzg4MfjCyxkKNfPLTwGB8KgzQonFkLPCpvM="; # 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 ]; }; }