about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2020-04-06 19:53:55 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2020-04-15 00:34:30 -0300
commit5b95f72deb6089e39a7bd8f841af2a132178275d (patch)
treede35a62a5065e1f20f28186eb2050a67e51a47c0 /pkgs/applications
parenta584339fafc11907eb38c94d6934d9d2d30f8905 (diff)
downloadnixlib-5b95f72deb6089e39a7bd8f841af2a132178275d.tar
nixlib-5b95f72deb6089e39a7bd8f841af2a132178275d.tar.gz
nixlib-5b95f72deb6089e39a7bd8f841af2a132178275d.tar.bz2
nixlib-5b95f72deb6089e39a7bd8f841af2a132178275d.tar.lz
nixlib-5b95f72deb6089e39a7bd8f841af2a132178275d.tar.xz
nixlib-5b95f72deb6089e39a7bd8f841af2a132178275d.tar.zst
nixlib-5b95f72deb6089e39a7bd8f841af2a132178275d.zip
icewm: update URL
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/window-managers/icewm/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/window-managers/icewm/default.nix b/pkgs/applications/window-managers/icewm/default.nix
index 651669bebe52..b6b07d8d7278 100644
--- a/pkgs/applications/window-managers/icewm/default.nix
+++ b/pkgs/applications/window-managers/icewm/default.nix
@@ -6,6 +6,7 @@
 , libpthreadstubs, pcre, libXdamage, libXcomposite, libXfixes
 , libsndfile, fribidi }:
 
+with stdenv.lib;
 stdenv.mkDerivation rec {
   pname = "icewm";
   version = "1.6.5";
@@ -34,13 +35,13 @@ stdenv.mkDerivation rec {
     cp -r ../lib/themes/{gtk2,Natural,nice,nice2,warp3,warp4,yellowmotif} $out/share/icewm/themes/
   '';
 
-  meta = with stdenv.lib; {
+  meta = {
     description = "A simple, lightweight X window manager";
     longDescription = ''
       IceWM is a window manager for the X Window System. The goal of
       IceWM is speed, simplicity, and not getting in the user's way.
     '';
-    homepage = "http://www.icewm.org/";
+    homepage = "https://www.ice-wm.org/";
     license = licenses.lgpl2;
     maintainers = [ maintainers.AndersonTorres ];
     platforms = platforms.linux;