nofi: init at 0.2.4
This commit is contained in:
parent
23b6191a0f
commit
c0a64aec6b
1 changed files with 27 additions and 0 deletions
27
pkgs/by-name/no/nofi/package.nix
Normal file
27
pkgs/by-name/no/nofi/package.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ lib, rustPlatform, fetchFromGitHub, dbus, pkg-config}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "nofi";
|
||||
version = "0.2.4";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ellsclytn";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-hQYIcyNCxb8qVpseNsmjyPxlwbMxDpXeZ+H1vpv62rQ=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-0TYIycuy2LIhixVvH++U8CbmfQugc+0TF8DTiViWSbE=";
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ dbus ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "An interruption-free notification system for Linux";
|
||||
homepage = "https://github.com/ellsclytn/nofi/";
|
||||
changelog = "https://github.com/ellsclytn/nofi/raw/v${version}/CHANGELOG.md";
|
||||
license = [ licenses.asl20 /* or */ licenses.mit ];
|
||||
mainProgram = pname;
|
||||
maintainers = [ maintainers.magnetophon ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue