nixpacks 1.7.0 -> 1.9.0 https://github.com/railwayapp/nixpacks/releases attrpath: nixpacks Checking auto update branch... No auto update branch exists Old version 1.7.0" not present in master derivation file with contents: { lib, rustPlatform, fetchFromGitHub }: rustPlatform.buildRustPackage rec { pname = "nixpacks"; version = "1.9.0"; src = fetchFromGitHub { owner = "railwayapp"; repo = pname; rev = "v${version}"; sha256 = "sha256-abdNKaasnygKm8X6/ybwXbHqvjLuV5FzKsJuWbADY5s="; }; cargoHash = "sha256-qj6Y/dDpX4pnWxxlgsxjDx0l9Yw5tizQrCZo0p/U9IE="; # 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 ]; }; }