bindle: init at 0.8.1 (#196116)

This commit is contained in:
Danielle 2022-10-23 21:52:34 +02:00 committed by GitHub
parent 78e99150c4
commit 2bf9d4fbe9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,34 @@
{ lib, rustPlatform, fetchFromGitHub, pkgs, stdenv, Security }:
rustPlatform.buildRustPackage rec {
pname = "bindle";
version = "0.8.1";
src = fetchFromGitHub {
owner = "deislabs";
repo = pname;
rev = "v${version}";
sha256 = "sha256-Mc3LaEOWx8cN7g0r8CtWkGZ746gAXTaFmAZhEIkbWgM=";
};
doCheck = false; # Tests require a network
buildInputs = with pkgs; [ pkg-config openssl_3 ] ++ lib.optional stdenv.isDarwin Security;
cargoSha256 = "sha256-brsemnw/9YEsA2FEIdYGmQMdlIoT1ZEMjvOpF44gcRE=";
cargoBuildFlags = [
"--bin" "bindle"
"--bin" "bindle-server"
"--all-features"
];
meta = with lib; {
description = "Bindle: Aggregate Object Storage";
homepage = "https://github.com/deislabs/bindle";
license = licenses.asl20;
maintainers = with maintainers; [ endocrimes ];
platforms = platforms.unix;
};
}

View file

@ -197,6 +197,10 @@ with pkgs;
appindicator-sharp = callPackage ../development/libraries/appindicator-sharp { };
bindle = callPackage ../servers/bindle {
inherit (darwin.apple_sdk.frameworks) Security;
};
canonicalize-jar = callPackage ../build-support/java/canonicalize-jar.nix { };
canonicalize-jars-hook = makeSetupHook {
name = "canonicalize-jars-hook";