mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
mako: init at 1.1 (#46606)
This commit is contained in:
parent
64df3f12a9
commit
f7a785fbd1
2 changed files with 27 additions and 0 deletions
25
pkgs/applications/misc/mako/default.nix
Normal file
25
pkgs/applications/misc/mako/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, scdoc, systemd, pango, cairo
|
||||
, wayland, wayland-protocols }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "mako-${version}";
|
||||
version = "1.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "emersion";
|
||||
repo = "mako";
|
||||
rev = "v${version}";
|
||||
sha256 = "18krsyp9g6f689024dn1mq8dyj4yg8c3kcy5s88q1gm8py6c4493";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ meson ninja pkgconfig scdoc ];
|
||||
buildInputs = [ systemd pango cairo wayland wayland-protocols ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A lightweight Wayland notification daemon";
|
||||
homepage = https://wayland.emersion.fr/mako/;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ dywedir ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -17710,6 +17710,8 @@ with pkgs;
|
|||
|
||||
makeself = callPackage ../applications/misc/makeself { };
|
||||
|
||||
mako = callPackage ../applications/misc/mako { };
|
||||
|
||||
mapmap = libsForQt5.callPackage ../applications/video/mapmap { };
|
||||
|
||||
marathon = callPackage ../applications/networking/cluster/marathon { };
|
||||
|
|
Loading…
Reference in a new issue