mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-08 01:24:09 +01:00
libdecor: fix build on FreeBSD
This commit is contained in:
parent
6e0c8f5164
commit
47bd140525
1 changed files with 4 additions and 2 deletions
|
|
@ -12,6 +12,7 @@
|
|||
dbus,
|
||||
pango,
|
||||
gtk3,
|
||||
evdev-proto,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
|
|
@ -51,13 +52,14 @@ stdenv.mkDerivation (finalAttrs: {
|
|||
dbus
|
||||
pango
|
||||
gtk3
|
||||
];
|
||||
]
|
||||
++ lib.optional stdenv.hostPlatform.isFreeBSD evdev-proto;
|
||||
|
||||
meta = {
|
||||
homepage = "https://gitlab.freedesktop.org/libdecor/libdecor";
|
||||
description = "Client-side decorations library for Wayland clients";
|
||||
license = lib.licenses.mit;
|
||||
platforms = lib.platforms.linux;
|
||||
platforms = lib.platforms.linux ++ lib.platforms.freebsd;
|
||||
maintainers = with lib.maintainers; [ artturin ];
|
||||
};
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue