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:
parent
0944e19139
commit
7ce1c176d0
2 changed files with 21 additions and 9 deletions
|
@ -1,27 +1,39 @@
|
|||
{ lib, rustPlatform, fetchFromGitHub, ncurses, openssl, pkg-config, stdenv, Security }:
|
||||
{ lib
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
, pkg-config
|
||||
, openssl
|
||||
, stdenv
|
||||
, darwin
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "hoard";
|
||||
version = "1.3.1";
|
||||
version = "1.4.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Hyde46";
|
||||
repo = pname;
|
||||
repo = "hoard";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-Gm3X6/g5JQJEl7wRvWcO4j5XpROhtfRJ72LNaUeZRGc=";
|
||||
hash = "sha256-c9iSbxkHwLOeATkO7kzTyLD0VAwZUzCvw5c4FyuR5/E=";
|
||||
};
|
||||
|
||||
buildInputs = [ ncurses openssl ]
|
||||
++ lib.optional stdenv.isDarwin Security;
|
||||
cargoHash = "sha256-4EeeD1ySR4M1i2aaKJP/BNSn+t1l8ingiv2ZImFFn1A=";
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
|
||||
cargoHash = "sha256-ZNhUqnsme1rczl3FdFBGGs+vBDFcFEELkPp0/udTfR4=";
|
||||
buildInputs = [
|
||||
openssl
|
||||
] ++ lib.optionals stdenv.isDarwin [
|
||||
darwin.apple_sdk.frameworks.Security
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "CLI command organizer written in rust";
|
||||
homepage = "https://github.com/hyde46/hoard";
|
||||
changelog = "https://github.com/Hyde46/hoard/blob/${src.rev}/CHANGES.md";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ builditluc ];
|
||||
maintainers = with maintainers; [ builditluc figsoda ];
|
||||
mainProgram = "hoard";
|
||||
};
|
||||
}
|
||||
|
|
|
@ -26603,7 +26603,7 @@ with pkgs;
|
|||
|
||||
hiraeth = callPackage ../servers/hiraeth { };
|
||||
|
||||
hoard = callPackage ../tools/misc/hoard { inherit (darwin) Security; };
|
||||
hoard = callPackage ../tools/misc/hoard { };
|
||||
|
||||
home-assistant = callPackage ../servers/home-assistant { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue