summary refs log tree commit diff
path: root/pkgs/development/libraries/libwacom
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2021-09-16 18:41:09 +0200
committerJan Tojnar <jtojnar@gmail.com>2021-09-16 18:41:09 +0200
commit0a9a03f95e6445405fc3e8a102f9e91a5bed4624 (patch)
tree5ec3f6e7f80d0a1424cf02ce26aeca7768a2cf92 /pkgs/development/libraries/libwacom
parent1be22b2c1eec022875a14c5b3bb90daab18bb5b7 (diff)
downloadnixpkgs-0a9a03f95e6445405fc3e8a102f9e91a5bed4624.tar
nixpkgs-0a9a03f95e6445405fc3e8a102f9e91a5bed4624.tar.gz
nixpkgs-0a9a03f95e6445405fc3e8a102f9e91a5bed4624.tar.bz2
nixpkgs-0a9a03f95e6445405fc3e8a102f9e91a5bed4624.tar.lz
nixpkgs-0a9a03f95e6445405fc3e8a102f9e91a5bed4624.tar.xz
nixpkgs-0a9a03f95e6445405fc3e8a102f9e91a5bed4624.tar.zst
nixpkgs-0a9a03f95e6445405fc3e8a102f9e91a5bed4624.zip
libwacom: 1.11 -> 1.12
Remove doxygen, it was never installed and upstream now does not even build it by default.

Also reformat the expression.
Diffstat (limited to 'pkgs/development/libraries/libwacom')
-rw-r--r--pkgs/development/libraries/libwacom/default.nix33
1 files changed, 27 insertions, 6 deletions
diff --git a/pkgs/development/libraries/libwacom/default.nix b/pkgs/development/libraries/libwacom/default.nix
index 0d7caf8ba5c..9ebb2c855cb 100644
--- a/pkgs/development/libraries/libwacom/default.nix
+++ b/pkgs/development/libraries/libwacom/default.nix
@@ -1,8 +1,18 @@
-{ lib, stdenv, fetchFromGitHub, meson, ninja, glib, pkg-config, udev, libgudev, doxygen, python3 }:
+{ stdenv
+, lib
+, fetchFromGitHub
+, meson
+, ninja
+, glib
+, pkg-config
+, udev
+, libgudev
+, python3
+}:
 
 stdenv.mkDerivation rec {
   pname = "libwacom";
-  version = "1.11";
+  version = "1.12";
 
   outputs = [ "out" "dev" ];
 
@@ -10,14 +20,25 @@ stdenv.mkDerivation rec {
     owner = "linuxwacom";
     repo = "libwacom";
     rev = "libwacom-${version}";
-    sha256 = "sha256-HDBWycdZf/pUL7ZzCuF55tfby3GW0WW6Vq3htPWT1v4=";
+    sha256 = "sha256-pCO0lB0liveIEZIxY3IJcqlmWy4rYhSBtRPssfzHEow=";
   };
 
-  nativeBuildInputs = [ pkg-config meson ninja doxygen python3 ];
+  nativeBuildInputs = [
+    pkg-config
+    meson
+    ninja
+    python3
+  ];
 
-  mesonFlags = [ "-Dtests=disabled" ];
+  buildInputs = [
+    glib
+    udev
+    libgudev
+  ];
 
-  buildInputs = [ glib udev libgudev ];
+  mesonFlags = [
+    "-Dtests=disabled"
+  ];
 
   meta = with lib; {
     platforms = platforms.linux;