summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPol Dellaiera <pol.dellaiera@protonmail.com>2023-08-01 08:51:30 +0200
committerGitHub <noreply@github.com>2023-08-01 08:51:30 +0200
commit714bd4a3e3cc6d97dea0c658942204ef4d66fce5 (patch)
treed8e1f9aa84c5fd42ca9df667e8e3ff06353c3718
parent3b58feff4c7bfb11a4703651908bec8b7d62b743 (diff)
parent57f4bdf484c4d5d64c3ea5576ebbc85dd635afc4 (diff)
Merge pull request #246330 from badboy/git-cinnabar-0.6.2
git-cinnabar: 0.6.1 -> 0.6.2
-rw-r--r--pkgs/applications/version-management/git-cinnabar/default.nix55
1 files changed, 38 insertions, 17 deletions
diff --git a/pkgs/applications/version-management/git-cinnabar/default.nix b/pkgs/applications/version-management/git-cinnabar/default.nix
index 64fa89f436ab..ca6a0165f1d0 100644
--- a/pkgs/applications/version-management/git-cinnabar/default.nix
+++ b/pkgs/applications/version-management/git-cinnabar/default.nix
@@ -1,29 +1,48 @@
-{ stdenv, lib, fetchFromGitHub, cargo, pkg-config, rustPlatform
-, bzip2, curl, zlib, zstd, libiconv, CoreServices
+{ stdenv
+, lib
+, fetchFromGitHub
+, cargo
+, pkg-config
+, rustPlatform
+, bzip2
+, curl
+, zlib
+, zstd
+, libiconv
+, CoreServices
}:
-stdenv.mkDerivation rec {
+stdenv.mkDerivation (finalAttrs: {
pname = "git-cinnabar";
- version = "0.6.1";
+ version = "0.6.2";
src = fetchFromGitHub {
owner = "glandium";
repo = "git-cinnabar";
- rev = version;
- sha256 = "VvfoMypiFT68YJuGpEyPCxGOjdbDoF6FXtzLWlw0uxY=";
+ rev = finalAttrs.version;
+ hash = "sha256-1Y4zd4rYNRatemDXRMkQQwBJdkfOGfDWk9QBvJOgi7s=";
fetchSubmodules = true;
};
nativeBuildInputs = [
- pkg-config rustPlatform.cargoSetupHook cargo
+ cargo
+ pkg-config
+ rustPlatform.cargoSetupHook
];
- buildInputs = [ bzip2 curl zlib zstd ]
- ++ lib.optionals stdenv.isDarwin [ libiconv CoreServices ];
+ buildInputs = [
+ bzip2
+ curl
+ zlib
+ zstd
+ ] ++ lib.optionals stdenv.isDarwin [
+ libiconv
+ CoreServices
+ ];
cargoDeps = rustPlatform.fetchCargoTarball {
- inherit src;
- sha256 = "GApYgE7AezKmcGWNY+dF1Yp1TZmEeUdq3CsjvMvo/Rw=";
+ inherit (finalAttrs) src;
+ hash = "sha256-p85AS2DukUzEbW9UGYmiF3hpnZvPrZ2sRaeA9dU8j/8=";
};
ZSTD_SYS_USE_PKG_CONFIG = true;
@@ -32,17 +51,19 @@ stdenv.mkDerivation rec {
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";
+ meta = {
description = "git remote helper to interact with mercurial repositories";
- license = licenses.gpl2Only;
- maintainers = with maintainers; [ qyliss ];
- platforms = platforms.all;
+ homepage = "https://github.com/glandium/git-cinnabar";
+ license = lib.licenses.gpl2Only;
+ maintainers = with lib.maintainers; [ qyliss ];
+ platforms = lib.platforms.all;
};
-}
+})