Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

libdecor: 0.1.0 -> 0.1.1, remove unused dependency #227464

Merged
merged 2 commits into from
Apr 22, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions pkgs/development/libraries/libdecor/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,27 +7,29 @@
, wayland
, wayland-protocols
, wayland-scanner
, egl-wayland
, cairo
, dbus
, pango
, libxkbcommon
}:

stdenv.mkDerivation rec {
pname = "libdecor";
version = "0.1.0";
version = "0.1.1";

src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "jadahl";
domain = "gitlab.freedesktop.org";
owner = "libdecor";
repo = "libdecor";
rev = "${version}";
sha256 = "0qdg3r7k086wzszr969s0ljlqdvfqm31zpl8p5h397bw076zr6p2";
hash = "sha256-8b6qCqOSDDbhYwAeAaUyI71tSopTkGtCJaxZaJw1vQQ=";
};

strictDeps = true;

mesonFlags = [
(lib.mesonBool "demo" false)
];

nativeBuildInputs = [
meson
ninja
Expand All @@ -38,15 +40,13 @@ stdenv.mkDerivation rec {
buildInputs = [
wayland
wayland-protocols
egl-wayland
cairo
dbus
pango
libxkbcommon
];

meta = with lib; {
homepage = "https://gitlab.gnome.org/jadahl/libdecor";
homepage = "https://gitlab.freedesktop.org/libdecor/libdecor";
description = "Client-side decorations library for Wayland clients";
license = licenses.mit;
platforms = platforms.linux;
Expand Down