2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2020-11-09 12:03:31 +00:00
|
|
|
, fetchCrate
|
|
|
|
, rustPlatform
|
2023-09-22 14:44:00 +00:00
|
|
|
, installShellFiles
|
2020-11-09 12:03:31 +00:00
|
|
|
, pkg-config
|
|
|
|
, libsodium
|
|
|
|
, openssl
|
|
|
|
, xxHash
|
|
|
|
, darwin
|
|
|
|
, gitImportSupport ? true
|
|
|
|
, libgit2 ? null
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-08-31 11:41:23 +00:00
|
|
|
pname = "pijul";
|
2024-01-03 22:47:46 +00:00
|
|
|
version = "1.0.0-beta.8";
|
2017-03-20 07:19:05 +00:00
|
|
|
|
2020-11-09 12:03:31 +00:00
|
|
|
src = fetchCrate {
|
|
|
|
inherit version pname;
|
2024-01-03 22:47:46 +00:00
|
|
|
hash = "sha256-BQic+E+SOfZYHJcYMaUmfjlIfop0YcVcASSjtnRtwD4=";
|
2017-03-20 07:19:05 +00:00
|
|
|
};
|
|
|
|
|
2024-01-03 22:47:46 +00:00
|
|
|
cargoHash = "sha256-D5P9pizerJiZK4UhCKEY1DXvaBMiWBXGu6Azlv6AjQA=";
|
2019-05-17 20:40:08 +00:00
|
|
|
|
2017-03-20 07:19:05 +00:00
|
|
|
doCheck = false;
|
2023-09-22 14:44:00 +00:00
|
|
|
nativeBuildInputs = [ installShellFiles pkg-config ];
|
2023-03-01 11:11:13 +00:00
|
|
|
buildInputs = [ openssl libsodium xxHash ]
|
2021-01-15 13:21:58 +00:00
|
|
|
++ (lib.optionals gitImportSupport [ libgit2 ])
|
|
|
|
++ (lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
|
2020-11-09 12:03:31 +00:00
|
|
|
CoreServices Security SystemConfiguration
|
|
|
|
]));
|
2017-06-07 08:24:44 +00:00
|
|
|
|
2021-11-15 23:47:13 +00:00
|
|
|
buildFeatures = lib.optional gitImportSupport "git";
|
|
|
|
|
2023-09-22 14:44:00 +00:00
|
|
|
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
|
|
installShellCompletion --cmd pijul \
|
|
|
|
--bash <($out/bin/pijul completion bash) \
|
|
|
|
--fish <($out/bin/pijul completion fish) \
|
|
|
|
--zsh <($out/bin/pijul completion zsh)
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-03-20 07:19:05 +00:00
|
|
|
description = "A distributed version control system";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://pijul.org";
|
2017-03-20 07:19:05 +00:00
|
|
|
license = with licenses; [ gpl2Plus ];
|
2021-07-13 15:46:06 +00:00
|
|
|
maintainers = with maintainers; [ gal_bolle dywedir fabianhjr ];
|
2023-11-27 01:17:53 +00:00
|
|
|
mainProgram = "pijul";
|
2017-03-20 07:19:05 +00:00
|
|
|
};
|
|
|
|
}
|