bonfire/packages/cargo-shuttle/default.nix

44 lines
887 B
Nix
Raw Normal View History

2024-04-22 00:26:36 +05:00
{
bonfire,
crane-lib,
lib,
pkgs,
version ? "v0.44.0",
hash ? "sha256-3u2GWgDQpa4sU/66vS6S+JwCEL/fvy8MTsATRs7RGVs=",
2024-04-22 00:26:36 +05:00
...
}:
let pkg = {
2024-04-22 00:26:36 +05:00
pname = "cargo-shuttle";
inherit version;
src = pkgs.fetchFromGitHub {
2024-04-22 00:26:36 +05:00
owner = "shuttle-hq";
repo = "shuttle";
rev = version;
hash = hash;
};
strictDeps = true;
doCheck = false;
2024-04-22 00:26:36 +05:00
nativeBuildInputs = with pkgs; [
pkg-config
];
buildInputs = with pkgs; [
openssl
zlib
];
meta = with lib; {
description = "A cargo command for the shuttle platform";
license = licenses.asl20;
homepage = "https://shuttle.rs/";
maintainers = with bonfire.lib.maintainers; [ L-Nafaryus ];
};
};
in let artifacts = crane-lib.buildDepsOnly pkg;
in crane-lib.buildPackage (
pkg // { inherit artifacts; }
)