biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / misc / snixembed / default.nix
blob21ec5dac81dfff4da3278027aced5c7fc45c9f44
1 { fetchFromSourcehut, gtk3, lib, libdbusmenu-gtk3, pkg-config, stdenv, vala }:
3 stdenv.mkDerivation rec {
4   pname = "snixembed";
5   version = "0.3.3";
7   src = fetchFromSourcehut {
8     owner = "~steef";
9     repo = pname;
10     rev = version;
11     sha256 = "sha256-co32Xlklg6KVyi+xEoDJ6TeN28V+wCSx73phwnl/05E=";
12   };
14   nativeBuildInputs = [ pkg-config vala ];
16   buildInputs = [ gtk3 libdbusmenu-gtk3 ];
18   makeFlags = [ "PREFIX=$(out)" ];
20   meta = with lib; {
21     description = "Proxy StatusNotifierItems as XEmbedded systemtray-spec icons";
22     homepage = "https://git.sr.ht/~steef/snixembed";
23     changelog = "https://git.sr.ht/~steef/snixembed/refs/${version}";
24     license = licenses.isc;
25     platforms = platforms.unix;
26     maintainers = with maintainers; [ figsoda ];
27     mainProgram = "snixembed";
28   };