mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 11:10:03 +00:00
cwe-client-cli: init at 0.3.2 (#332936)
This commit is contained in:
commit
ca86b0e06d
|
@ -20389,6 +20389,11 @@
|
|||
githubId = 156964;
|
||||
name = "Thomas Boerger";
|
||||
};
|
||||
tbwanderer = {
|
||||
github = "tbwanderer";
|
||||
githubId = 125365236;
|
||||
name = "Ice Layer";
|
||||
};
|
||||
tcbravo = {
|
||||
email = "tomas.bravo@protonmail.ch";
|
||||
github = "tcbravo";
|
||||
|
|
35
pkgs/by-name/cw/cwe-client-cli/package.nix
Normal file
35
pkgs/by-name/cw/cwe-client-cli/package.nix
Normal file
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
lib,
|
||||
rustPlatform,
|
||||
fetchFromGitHub,
|
||||
pkg-config,
|
||||
glib,
|
||||
dbus,
|
||||
openssl_3,
|
||||
}:
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "cwe-client-cli";
|
||||
version = "0.3.2";
|
||||
src = fetchFromGitHub {
|
||||
owner = "NotBalds";
|
||||
repo = "cwe-client-cli";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-7zzmYwuQ+Sg8hf1zuKtKUMgk0Is1YJB4WdOKdxtWRA0=";
|
||||
};
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [
|
||||
glib
|
||||
dbus
|
||||
openssl_3
|
||||
];
|
||||
cargoHash = "sha256-VgbNwqDVcORWJB5QjH39gZZtW1n2Me9FxVUhb4vIg1A=";
|
||||
|
||||
meta = {
|
||||
description = "Simple command line client for CWE";
|
||||
homepage = "https://github.com/NotBalds/cwe-client-cli";
|
||||
license = lib.licenses.gpl3Only;
|
||||
maintainers = with lib.maintainers; [ tbwanderer ];
|
||||
mainProgram = "cwe-client-cli";
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue