hoard: 1.3.1 -> 1.4.2

Diff: https://github.com/Hyde46/hoard/compare/v1.3.1...v1.4.2
This commit is contained in:
figsoda 2023-08-28 09:51:28 -04:00
parent 0944e19139
commit 7ce1c176d0
2 changed files with 21 additions and 9 deletions

View file

@ -1,27 +1,39 @@
{ lib, rustPlatform, fetchFromGitHub, ncurses, openssl, pkg-config, stdenv, Security }: { lib
, rustPlatform
, fetchFromGitHub
, pkg-config
, openssl
, stdenv
, darwin
}:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "hoard"; pname = "hoard";
version = "1.3.1"; version = "1.4.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Hyde46"; owner = "Hyde46";
repo = pname; repo = "hoard";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-Gm3X6/g5JQJEl7wRvWcO4j5XpROhtfRJ72LNaUeZRGc="; hash = "sha256-c9iSbxkHwLOeATkO7kzTyLD0VAwZUzCvw5c4FyuR5/E=";
}; };
buildInputs = [ ncurses openssl ] cargoHash = "sha256-4EeeD1ySR4M1i2aaKJP/BNSn+t1l8ingiv2ZImFFn1A=";
++ lib.optional stdenv.isDarwin Security;
nativeBuildInputs = [ pkg-config ]; nativeBuildInputs = [ pkg-config ];
cargoHash = "sha256-ZNhUqnsme1rczl3FdFBGGs+vBDFcFEELkPp0/udTfR4="; buildInputs = [
openssl
] ++ lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.Security
];
meta = with lib; { meta = with lib; {
description = "CLI command organizer written in rust"; description = "CLI command organizer written in rust";
homepage = "https://github.com/hyde46/hoard"; homepage = "https://github.com/hyde46/hoard";
changelog = "https://github.com/Hyde46/hoard/blob/${src.rev}/CHANGES.md";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ builditluc ]; maintainers = with maintainers; [ builditluc figsoda ];
mainProgram = "hoard";
}; };
} }

View file

@ -26603,7 +26603,7 @@ with pkgs;
hiraeth = callPackage ../servers/hiraeth { }; hiraeth = callPackage ../servers/hiraeth { };
hoard = callPackage ../tools/misc/hoard { inherit (darwin) Security; }; hoard = callPackage ../tools/misc/hoard { };
home-assistant = callPackage ../servers/home-assistant { }; home-assistant = callPackage ../servers/home-assistant { };