moon 1.10.1 -> 1.12.1 https://github.com/moonrepo/moon/releases attrpath: moon Checking auto update branch... No auto update branch exists Old version 1.10.1" not present in master derivation file with contents: { lib , rustPlatform , fetchFromGitHub , darwin , stdenv , openssl , pkg-config }: rustPlatform.buildRustPackage rec { pname = "moon"; version = "1.13.0"; src = fetchFromGitHub { owner = "moonrepo"; repo = pname; rev = "v${version}"; hash = "sha256-iCopvHLbOepgsMFn//kfIdNZtAN7kqzZ1lVXcIGAAso="; }; cargoHash = "sha256-pEx7dszYfFxCGokkEbpNjoE1KsXo2r6t6FGLBXMZGwo="; env = { RUSTFLAGS = "-C strip=symbols"; OPENSSL_NO_VENDOR = 1; }; buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security darwin.apple_sdk.frameworks.SystemConfiguration ]; nativeBuildInputs = [ pkg-config ]; # Some tests fail, because test using internet connection and install NodeJS by example doCheck = false; meta = with lib; { description = "A task runner and repo management tool for the web ecosystem, written in Rust"; homepage = "https://github.com/moonrepo/moon"; license = licenses.mit; maintainers = with maintainers; [ flemzord ]; }; }