mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
snixembed: init at 0.3.1
This commit is contained in:
parent
c5a8d45d41
commit
bc7bddb0df
2 changed files with 30 additions and 0 deletions
28
pkgs/applications/misc/snixembed/default.nix
Normal file
28
pkgs/applications/misc/snixembed/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ fetchFromSourcehut, gtk3, lib, libdbusmenu-gtk3, pkg-config, stdenv, vala }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "snixembed";
|
||||
version = "0.3.1";
|
||||
|
||||
src = fetchFromSourcehut {
|
||||
owner = "~steef";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "0yy1i4463q43aq98qk4nvvzpw4i6bid2bywwgf6iq545pr3glfj5";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config vala ];
|
||||
|
||||
buildInputs = [ gtk3 libdbusmenu-gtk3 ];
|
||||
|
||||
makeFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Proxy StatusNotifierItems as XEmbedded systemtray-spec icons";
|
||||
homepage = "https://git.sr.ht/~steef/snixembed";
|
||||
changelog = "https://git.sr.ht/~steef/snixembed/refs/${version}";
|
||||
license = licenses.isc;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ figsoda ];
|
||||
};
|
||||
}
|
|
@ -26974,6 +26974,8 @@ in
|
|||
|
||||
sniproxy = callPackage ../applications/networking/sniproxy { };
|
||||
|
||||
snixembed = callPackage ../applications/misc/snixembed { };
|
||||
|
||||
sooperlooper = callPackage ../applications/audio/sooperlooper { };
|
||||
|
||||
sops = callPackage ../tools/security/sops { };
|
||||
|
|
Loading…
Reference in a new issue