about summary refs log tree commit diff
path: root/pkgs/applications/misc/nwg-wrapper
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2022-10-24 21:59:19 +0300
committerArtturin <Artturin@artturin.com>2022-10-24 22:22:46 +0300
commitae54952c4e2d8e3cdebd2947bc07afb9ace4fee6 (patch)
tree67c9c3209a84f188eeae05f85e9017daf8ac5ee6 /pkgs/applications/misc/nwg-wrapper
parentf869098b67550eaf1752dc9592cc4daaef771c52 (diff)
nwg-wrapper: 0.1.2 -> 0.1.3
strictDeps can now be enabled because I fixed gobject-introspection's hook

just make sure that gobject-introspection is in nativeBuildInputs
Diffstat (limited to 'pkgs/applications/misc/nwg-wrapper')
-rw-r--r--pkgs/applications/misc/nwg-wrapper/default.nix9
1 files changed, 3 insertions, 6 deletions
diff --git a/pkgs/applications/misc/nwg-wrapper/default.nix b/pkgs/applications/misc/nwg-wrapper/default.nix
index 4e7f864f3eaa3..2ff04c09b82e5 100644
--- a/pkgs/applications/misc/nwg-wrapper/default.nix
+++ b/pkgs/applications/misc/nwg-wrapper/default.nix
@@ -2,13 +2,13 @@
 
 python3Packages.buildPythonPackage rec {
   pname = "nwg-wrapper";
-  version = "0.1.2";
+  version = "0.1.3";
 
   src = fetchFromGitHub {
     owner = "nwg-piotr";
     repo = pname;
-    rev = "v${version}";
-    sha256 = "114y55mv2rgnp75a3c7rk46v5v84d1zqb6wkha7x16ab6xa9phzl";
+    rev = "refs/tags/v${version}";
+    sha256 = "sha256-GKDAdjO67aedCEFHKDukQ+oPMomTPwFE/CvJu112fus=";
   };
 
   nativeBuildInputs = [ gobject-introspection wrapGAppsHook ];
@@ -17,9 +17,6 @@ python3Packages.buildPythonPackage rec {
 
   propagatedBuildInputs = with python3Packages; [ i3ipc pygobject3 ];
 
-  # ValueError: Namespace GtkLayerShell not available
-  strictDeps = false;
-
   # No tests
   doCheck = false;