cmd-polkit: init at 0.3.0
This commit is contained in:
parent
250ad58c1d
commit
9499694330
49
pkgs/by-name/cm/cmd-polkit/package.nix
Normal file
49
pkgs/by-name/cm/cmd-polkit/package.nix
Normal file
@ -0,0 +1,49 @@
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
meson,
|
||||
ninja,
|
||||
glib,
|
||||
cmake,
|
||||
json-glib,
|
||||
polkit,
|
||||
gtk3,
|
||||
pkg-config,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "cmd-polkit";
|
||||
version = "0.3.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "OmarCastro";
|
||||
repo = "cmd-polkit";
|
||||
rev = "v${finalAttrs.version}";
|
||||
hash = "sha256-oQaGV/ROP9YFyL8owduKOZLjqyx9D35xH67gNKECduQ=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
meson
|
||||
cmake
|
||||
pkg-config
|
||||
ninja
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
json-glib
|
||||
glib
|
||||
polkit
|
||||
gtk3
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Easily create polkit authentication agents by using commands";
|
||||
homepage = "https://github.com/OmarCastro/cmd-polkit";
|
||||
changelog = "https://github.com/OmarCastro/cmd-polkit/blob/${finalAttrs.src.rev}/CHANGELOG";
|
||||
license = licenses.lgpl21Only;
|
||||
maintainers = with maintainers; [ daru-san ];
|
||||
mainProgram = "cmd-polkit";
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
})
|
Loading…
Reference in New Issue
Block a user