python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / misc / tiramisu / default.nix
blob8d1e1910cbc9474511e6555cef5d2a05b5ba37fa
1 { lib, stdenv, fetchFromGitHub, pkg-config, glib, vala }:
3 stdenv.mkDerivation rec {
4   pname = "tiramisu";
5   version = "2.0.20211107";
7   src = fetchFromGitHub {
8     owner = "Sweets";
9     repo = pname;
10     rev = version;
11     sha256 = "1n1x1ybbwbanibw7b90k7v4cadagl41li17hz2l8s2sapacvq3mw";
12   };
14   buildInputs = [ glib ];
16   nativeBuildInputs = [ pkg-config vala ];
18   makeFlags = [ "PREFIX=$(out)" ];
20   meta = with lib; {
21     description = "Desktop notifications, the UNIX way";
22     longDescription = ''
23       tiramisu is a notification daemon based on dunst that outputs notifications
24       to STDOUT in order to allow the user to process notifications any way they
25       prefer.
26     '';
27     homepage = "https://github.com/Sweets/tiramisu";
28     license = licenses.mit;
29     platforms = platforms.linux;
30     maintainers = with maintainers; [ wishfort36 fortuneteller2k ];
31   };