{ lib, stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, Security }: rustPlatform.buildRustPackage rec { pname = "git-backup"; version = "0.2.0"; src = fetchFromGitHub { owner = "jsdw"; repo = pname; rev = "v${version}"; sha256 = "0h31j8clvk4gkw4mgva9p0ypf26zhf7f0y564fdmzyw6rsz9wzcj"; }; cargoLock = { lockFile = ./Cargo.lock; }; nativeBuildInputs = [ pkg-config ]; buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security ]; # update Cargo.lock to work with openssl 3 postPatch = '' ln -sf ${./Cargo.lock} Cargo.lock ''; meta = with lib; { homepage = "https://github.com/jsdw/git-backup"; description = "A tool to help you backup your git repositories from services like GitHub"; license = licenses.mit; maintainers = [ maintainers.marsam ]; mainProgram = "git-backup"; }; }