panamax: 1.0.3 -> 1.0.6
This commit is contained in:
parent
b3c86fff5b
commit
37cab2f8e7
2 changed files with 21 additions and 8 deletions
|
@ -1,19 +1,34 @@
|
|||
{ lib, rustPlatform, fetchCrate, pkg-config, openssl, stdenv, Security }:
|
||||
{ lib
|
||||
, rustPlatform
|
||||
, fetchCrate
|
||||
, pkg-config
|
||||
, libgit2
|
||||
, openssl
|
||||
, zlib
|
||||
, stdenv
|
||||
, darwin
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "panamax";
|
||||
version = "1.0.3";
|
||||
version = "1.0.6";
|
||||
|
||||
src = fetchCrate {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-w4waFdzd/Ps0whOp39QLBE/YF2eyc4t2Ili7FskUt1M=";
|
||||
sha256 = "sha256-/JW2QB5PtwKo0TLU/QmkgsE6/ne+51EVmWyGn7Lljdw=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-52snmkTFHI26xJo9qJkmqh1M5lLzhDxw8WT6uFd57aw=";
|
||||
cargoSha256 = "sha256-aKdDismdPcExqznS6S2LvAij6gv9/Hw2FBvkhr9rJGo=";
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
|
||||
buildInputs = [ openssl ] ++ lib.optional stdenv.isDarwin Security;
|
||||
buildInputs = [
|
||||
libgit2
|
||||
openssl
|
||||
zlib
|
||||
] ++ lib.optionals stdenv.isDarwin [
|
||||
darwin.apple_sdk.frameworks.Security
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Mirror rustup and crates.io repositories for offline Rust and cargo usage";
|
||||
|
|
|
@ -15719,9 +15719,7 @@ with pkgs;
|
|||
maturin = callPackage ../development/tools/rust/maturin {
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
panamax = callPackage ../development/tools/rust/panamax {
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
panamax = callPackage ../development/tools/rust/panamax { };
|
||||
|
||||
ograc = callPackage ../development/tools/rust/ograc { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue