nixpkgs/pkgs/applications/misc/mako/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
882 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, scdoc
2019-05-22 13:03:39 +02:00
, systemd, pango, cairo, gdk-pixbuf
, wayland, wayland-protocols
, wrapGAppsHook }:
2018-10-23 22:12:44 +02:00
stdenv.mkDerivation rec {
2019-04-19 16:49:29 +02:00
pname = "mako";
version = "1.7.1";
2018-10-23 22:12:44 +02:00
src = fetchFromGitHub {
owner = "emersion";
2019-04-19 16:49:29 +02:00
repo = pname;
2018-10-23 22:12:44 +02:00
rev = "v${version}";
sha256 = "sha256-/+XYf8FiH4lk7f7/pMt43hm13mRK+UqvaNOpf1TI6m4=";
2018-10-23 22:12:44 +02:00
};
nativeBuildInputs = [ meson ninja pkg-config scdoc wayland-protocols wrapGAppsHook ];
2019-05-22 13:03:39 +02:00
buildInputs = [ systemd pango cairo gdk-pixbuf wayland ];
2019-04-19 16:49:29 +02:00
2021-05-03 20:29:22 +02:00
mesonFlags = [
"-Dzsh-completions=true"
"-Dsd-bus-provider=libsystemd"
];
2018-10-23 22:12:44 +02:00
meta = with lib; {
2018-10-23 22:12:44 +02:00
description = "A lightweight Wayland notification daemon";
homepage = "https://wayland.emersion.fr/mako/";
2018-10-23 22:12:44 +02:00
license = licenses.mit;
2020-01-12 15:51:24 +01:00
maintainers = with maintainers; [ dywedir synthetica ];
2018-10-23 22:12:44 +02:00
platforms = platforms.linux;
};
}