1 { lib, rustPlatform, fetchFromGitHub, stdenv, Security, pkg-config, openssl }:
3 rustPlatform.buildRustPackage rec {
7 src = fetchFromGitHub {
11 sha256 = "sha256-xehn74fqP0tEtP4Qy9TRGv+P2QoHZLxRHzGoY5cQuv0=";
18 doCheck = false; # Tests require a network
20 nativeBuildInputs = [ pkg-config ];
21 buildInputs = [ openssl ] ++ lib.optional stdenv.isDarwin Security;
23 cargoHash = "sha256-RECEeo0uoGO5bBe+r++zpTjYYX3BIkT58uht2MLYkN0=";
27 "--bin" "bindle-server"
32 description = "Bindle: Aggregate Object Storage";
33 homepage = "https://github.com/deislabs/bindle";
34 license = licenses.asl20;
35 maintainers = with maintainers; [ ];
36 platforms = platforms.unix;