git-cinnabar 0.6.0 -> 0.6.1 https://github.com/glandium/git-cinnabar/releases attrpath: git-cinnabar Checking auto update branch... No auto update branch exists Old version 0.6.0" not present in master derivation file with contents: { stdenv, lib, fetchFromGitHub, pkg-config, rustPlatform , bzip2, curl, zlib, zstd, libiconv, CoreServices }: stdenv.mkDerivation rec { pname = "git-cinnabar"; version = "0.6.1"; src = fetchFromGitHub { owner = "glandium"; repo = "git-cinnabar"; rev = version; sha256 = "VvfoMypiFT68YJuGpEyPCxGOjdbDoF6FXtzLWlw0uxY="; fetchSubmodules = true; }; nativeBuildInputs = [ pkg-config rustPlatform.cargoSetupHook rustPlatform.rust.cargo ]; buildInputs = [ bzip2 curl zlib zstd ] ++ lib.optionals stdenv.isDarwin [ libiconv CoreServices ]; cargoDeps = rustPlatform.fetchCargoTarball { inherit src; sha256 = "GApYgE7AezKmcGWNY+dF1Yp1TZmEeUdq3CsjvMvo/Rw="; }; ZSTD_SYS_USE_PKG_CONFIG = true; enableParallelBuilding = true; installPhase = '' runHook preInstall mkdir -p $out/bin install -v target/release/git-cinnabar $out/bin ln -sv git-cinnabar $out/bin/git-remote-hg runHook postInstall ''; meta = with lib; { homepage = "https://github.com/glandium/git-cinnabar"; description = "git remote helper to interact with mercurial repositories"; license = licenses.gpl2Only; maintainers = with maintainers; [ qyliss ]; platforms = platforms.all; }; }