about summary refs log tree commit diff
path: root/pkgs/data
diff options
context:
space:
mode:
authorFelix Buehler <account@buehler.rocks>2021-04-14 21:56:57 +0200
committerFelix Buehler <account@buehler.rocks>2021-04-14 22:40:14 +0200
commit561038debe2fd7f6237ff443794350103f2cd477 (patch)
tree40968b908dc4da8d84c21bd6a2cf2baa8f2fe8ff /pkgs/data
parent6d74053afd97fc9bb90e86a250164fd5e76745fe (diff)
numix-icon-theme: 20.06.07 -> 21.04.14
Diffstat (limited to 'pkgs/data')
-rw-r--r--pkgs/data/icons/numix-icon-theme/default.nix10
1 files changed, 7 insertions, 3 deletions
diff --git a/pkgs/data/icons/numix-icon-theme/default.nix b/pkgs/data/icons/numix-icon-theme/default.nix
index d8e583b4bbb80..194a36021a946 100644
--- a/pkgs/data/icons/numix-icon-theme/default.nix
+++ b/pkgs/data/icons/numix-icon-theme/default.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   pname = "numix-icon-theme";
-  version = "20.06.07";
+  version = "21.04.14";
 
   src = fetchFromGitHub {
     owner = "numixproject";
     repo = pname;
     rev = version;
-    sha256 = "1yp9parc8ihmai8pswf4qzrqd88qpls87ipq8ylx38yqns7wsn4h";
+    sha256 = "1ilzqh9f7skdfg5sl97zfgwrzvwa1zna22dpq0954gyyzvy7k7lg";
   };
 
   nativeBuildInputs = [ gtk3 ];
@@ -18,18 +18,22 @@ stdenv.mkDerivation rec {
   dontDropIconThemeCache = true;
 
   installPhase = ''
+    runHook preInstall
+
     mkdir -p $out/share/icons
     cp -a Numix{,-Light} $out/share/icons/
 
     for theme in $out/share/icons/*; do
       gtk-update-icon-cache $theme
     done
+
+    runHook postInstall
   '';
 
   meta = with lib; {
     description = "Numix icon theme";
     homepage = "https://numixproject.github.io";
-    license = licenses.gpl3;
+    license = licenses.gpl3Only;
     # darwin cannot deal with file names differing only in case
     platforms = platforms.linux;
     maintainers = with maintainers; [ romildo ];