From ed2ef6fb938bd06c7696d3136bbcd96fead6480f Mon Sep 17 00:00:00 2001 From: "Alexander \"PapaTutuWawa" Date: Fri, 22 Oct 2021 21:44:48 +0200 Subject: [PATCH] overlays: Fix nwg-launchers --- overlays/simple.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/overlays/simple.nix b/overlays/simple.nix index 57b5d1a..208258e 100644 --- a/overlays/simple.nix +++ b/overlays/simple.nix @@ -44,4 +44,15 @@ in { # ip_tables and the likes iptables = prev.iptables-nftables-compat; }; + + nwg-launchers = prev.nwg-launchers.overrideAttrs (old: rec { + version = "0.6.3"; + + src = prev.fetchFromGitHub { + owner = "nwg-piotr"; + repo = "nwg-launchers"; + rev = "v${version}"; + sha256 = "05aih05z5dybbv67qjmn90yjrk1k2l0v83hhglqqdin18k5xhq21"; + }; + }); }