lock: init at 1.1.3
This commit is contained in:
parent
ba1cb7c8e0
commit
28c8e79c0d
64
pkgs/by-name/lo/lock/package.nix
Normal file
64
pkgs/by-name/lo/lock/package.nix
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
{
|
||||||
|
lib,
|
||||||
|
stdenv,
|
||||||
|
appstream,
|
||||||
|
blueprint-compiler,
|
||||||
|
desktop-file-utils,
|
||||||
|
fetchFromGitHub,
|
||||||
|
gdk-pixbuf,
|
||||||
|
glib,
|
||||||
|
gpgme,
|
||||||
|
gtk4,
|
||||||
|
libadwaita,
|
||||||
|
meson,
|
||||||
|
ninja,
|
||||||
|
nix-update-script,
|
||||||
|
pkg-config,
|
||||||
|
wrapGAppsHook4,
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
|
pname = "lock";
|
||||||
|
version = "1.1.3";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "konstantintutsch";
|
||||||
|
repo = "Lock";
|
||||||
|
rev = "refs/tags/v${finalAttrs.version}";
|
||||||
|
hash = "sha256-ybWuI9hacc2vJ5KpkDlUYLaRhOurNMdTt6JiTN6BvqM=";
|
||||||
|
};
|
||||||
|
|
||||||
|
strictDeps = true;
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
appstream
|
||||||
|
blueprint-compiler
|
||||||
|
desktop-file-utils
|
||||||
|
glib # For `glib-compile-schemas`
|
||||||
|
gtk4 # For `gtk-update-icon-cache`
|
||||||
|
meson
|
||||||
|
ninja
|
||||||
|
pkg-config
|
||||||
|
wrapGAppsHook4
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
gdk-pixbuf
|
||||||
|
gpgme
|
||||||
|
gtk4
|
||||||
|
libadwaita
|
||||||
|
];
|
||||||
|
|
||||||
|
passthru = {
|
||||||
|
updateScript = nix-update-script { };
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Process data with GnuPG";
|
||||||
|
homepage = "https://konstantintutsch.com/Lock";
|
||||||
|
license = lib.licenses.mit;
|
||||||
|
maintainers = with lib.maintainers; [ getchoo ];
|
||||||
|
mainProgram = "com.konstantintutsch.Lock";
|
||||||
|
inherit (gpgme.meta) platforms;
|
||||||
|
};
|
||||||
|
})
|
Loading…
Reference in New Issue
Block a user