bonfire/packages/cargo-shuttle/default.nix
L-Nafaryus e7843597b0
All checks were successful
nix / check (push) Successful in 2m5s
packages.cargo-shuttle: version v0.44.0 -> v0.47.0
2024-07-24 14:46:35 +05:00

47 lines
894 B
Nix

{
bonLib,
craneLib,
lib,
pkgs,
version ? "v0.47.0",
hash ? "sha256-AJ+7IUxi5SRRWw0EHh9JmQHkdQU3Mhd1Nmo1peEG2zg=",
...
}: let
pkg = {
pname = "cargo-shuttle";
inherit version;
src = pkgs.fetchFromGitHub {
owner = "shuttle-hq";
repo = "shuttle";
rev = version;
hash = hash;
};
strictDeps = true;
doCheck = false;
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 bonLib.maintainers; [L-Nafaryus];
platforms = platforms.x86_64;
};
};
in let
cargoArtifacts = craneLib.buildDepsOnly pkg;
in
craneLib.buildPackage (
pkg // {inherit cargoArtifacts;}
)