bonfire/packages/cargo-shuttle/default.nix

46 lines
867 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=",
...
}: let
pkg = {
2024-04-22 00:26:36 +05:00
pname = "cargo-shuttle";
inherit version;
src = pkgs.fetchFromGitHub {
owner = "shuttle-hq";
repo = "shuttle";
rev = version;
hash = hash;
2024-04-22 00:26:36 +05:00
};
strictDeps = true;
doCheck = false;
2024-04-22 00:26:36 +05:00
nativeBuildInputs = with pkgs; [
pkg-config
2024-04-22 00:26:36 +05:00
];
buildInputs = with pkgs; [
openssl
zlib
2024-04-22 00:26:36 +05:00
];
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];
2024-04-22 00:26:36 +05:00
};
};
in let
cargoArtifacts = crane-lib.buildDepsOnly pkg;
in
crane-lib.buildPackage (
pkg // {inherit cargoArtifacts;}
)