mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 01:33:10 +00:00
5e06b3cb19
This will be deprecated in the next commit.
49 lines
1.2 KiB
Nix
49 lines
1.2 KiB
Nix
{ stdenv, lib, fetchFromGitHub, cargo, 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 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;
|
|
};
|
|
}
|