pkgs: init ianny

This commit is contained in:
Rouven Seifert 2023-12-17 17:26:53 +01:00
parent 38d3e744ad
commit f63c881a78
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09

26
pkgs/ianny/default.nix Normal file
View file

@ -0,0 +1,26 @@
{ rustPlatform, fetchFromGitHub, lib, ninja, dbus, pkg-config, gettext }:
rustPlatform.buildRustPackage rec {
pname = "ianny";
version = "unstable-2023-12-16";
src = fetchFromGitHub {
owner = "zefr0x";
repo = pname;
rev = "370bea372c35610e65426f5a1c45db99584dfb9a";
hash = "sha256-oWwRCQSP0g6IJh3cEgD32AIBF/pfN9QGJ9LANjCthMw=";
};
cargoSha256 = "sha256-5/Sb2ds+xfcYFqTF3RObPScDzK4FdBNk8T1Z5YcQgCM=";
buildInputs = [
dbus
ninja
];
nativeBuildInputs = [
pkg-config
];
meta = with lib; {
description = "Wayland break timer";
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ therealr5 ];
};
}