Skip to content

Commit

Permalink
Merge pull request NixOS#219362 from NixOS/backport-218977-to-release…
Browse files Browse the repository at this point in the history
…-22.11

[Backport release-22.11] pijul: 1.0.0-beta.2 -> 1.0.0-beta.4
  • Loading branch information
wegank authored Mar 3, 2023
2 parents 7055d2a + 73d0ee5 commit 9c951e6
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions pkgs/applications/version-management/pijul/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,25 @@
, libsodium
, openssl
, xxHash
, zstd
, darwin
, gitImportSupport ? true
, libgit2 ? null
}:

rustPlatform.buildRustPackage rec {
pname = "pijul";
version = "1.0.0-beta.2";
version = "1.0.0-beta.4";

src = fetchCrate {
inherit version pname;
sha256 = "sha256-78nzCOR+AZuiAA1OpKKW4kfdUnlN8+qVaO3dknMck58=";
sha256 = "sha256-Sx+ZbT1EONWiQmC/5f4thfE9mmTulhTmUWeqPkQgJh8=";
};

cargoSha256 = "sha256-IhjN0HjIIuP+P8yfZ3NmZpVZBAuetOr4OVZoI8Qfspo=";
cargoSha256 = "sha256-vc7rkLCy489W7MjJYiN8vg4DNS65/ZSIEAcw0vaQJtU=";

doCheck = false;
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl libsodium xxHash zstd ]
buildInputs = [ openssl libsodium xxHash ]
++ (lib.optionals gitImportSupport [ libgit2 ])
++ (lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
CoreServices Security SystemConfiguration
Expand Down

0 comments on commit 9c951e6

Please sign in to comment.