summary refs log tree commit diff
path: root/pkgs/development/libraries/libfm
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2014-11-14 23:07:00 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2014-11-14 23:28:30 +0000
commit8a96d42570fa52fdf11f88d03669fd6958565711 (patch)
tree479a047adb2633954c49355239087eac3b7cb682 /pkgs/development/libraries/libfm
parent0b34eb149334a4b22f1d2a345f783484e7ae177d (diff)
downloadnixlib-8a96d42570fa52fdf11f88d03669fd6958565711.tar
nixlib-8a96d42570fa52fdf11f88d03669fd6958565711.tar.gz
nixlib-8a96d42570fa52fdf11f88d03669fd6958565711.tar.bz2
nixlib-8a96d42570fa52fdf11f88d03669fd6958565711.tar.lz
nixlib-8a96d42570fa52fdf11f88d03669fd6958565711.tar.xz
nixlib-8a96d42570fa52fdf11f88d03669fd6958565711.tar.zst
nixlib-8a96d42570fa52fdf11f88d03669fd6958565711.zip
libfm: update frm 1.2.2.1 to 1.2.3
Diffstat (limited to 'pkgs/development/libraries/libfm')
-rw-r--r--pkgs/development/libraries/libfm/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/libraries/libfm/default.nix b/pkgs/development/libraries/libfm/default.nix
index 9f42a1c8c3e8..efa9b90e869f 100644
--- a/pkgs/development/libraries/libfm/default.nix
+++ b/pkgs/development/libraries/libfm/default.nix
@@ -1,13 +1,13 @@
 { stdenv, fetchurl, glib, gtk, intltool, menu-cache, pango, pkgconfig, vala
 , extraOnly ? false }:
-let name = "libfm-1.2.2.1";
+let
     inherit (stdenv.lib) optional;
 in
 stdenv.mkDerivation {
-  name = if extraOnly then "libfm-extra-1.2.2.1" else "libfm-1.2.2.1";
+  name = if extraOnly then "libfm-extra-1.2.3" else "libfm-1.2.3";
   src = fetchurl {
-    url = "mirror://sourceforge/pcmanfm/libfm-1.2.2.1.tar.xz";
-    sha256 = "0aa37arr0h2nppjh7ppf00np2d8mb43imvfq9b7wq5cnzpvs7c6v";
+    url = "mirror://sourceforge/pcmanfm/libfm-1.2.3.tar.xz";
+    sha256 = "1ygvw52262r3jp1f45m9cdpx5xgvd4rkyfszslfqvg2c99ig34n6";
   };
 
   buildInputs = [ glib gtk intltool pango pkgconfig vala ]
@@ -17,7 +17,7 @@ stdenv.mkDerivation {
 
   meta = with stdenv.lib; {
     homepage = "http://blog.lxde.org/?cat=28/";
-    license = licenses.gpl2Plus;
+    license = licenses.lgpl21Plus;
     description = "A glib-based library for file management";
     maintainers = [ maintainers.ttuegel ];
     platforms = platforms.linux;