Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

libfm: update frm 1.2.2.1 to 1.2.3

+5 -5
+5 -5
pkgs/development/libraries/libfm/default.nix
··· 1 1 { stdenv, fetchurl, glib, gtk, intltool, menu-cache, pango, pkgconfig, vala 2 2 , extraOnly ? false }: 3 - let name = "libfm-1.2.2.1"; 3 + let 4 4 inherit (stdenv.lib) optional; 5 5 in 6 6 stdenv.mkDerivation { 7 - name = if extraOnly then "libfm-extra-1.2.2.1" else "libfm-1.2.2.1"; 7 + name = if extraOnly then "libfm-extra-1.2.3" else "libfm-1.2.3"; 8 8 src = fetchurl { 9 - url = "mirror://sourceforge/pcmanfm/libfm-1.2.2.1.tar.xz"; 10 - sha256 = "0aa37arr0h2nppjh7ppf00np2d8mb43imvfq9b7wq5cnzpvs7c6v"; 9 + url = "mirror://sourceforge/pcmanfm/libfm-1.2.3.tar.xz"; 10 + sha256 = "1ygvw52262r3jp1f45m9cdpx5xgvd4rkyfszslfqvg2c99ig34n6"; 11 11 }; 12 12 13 13 buildInputs = [ glib gtk intltool pango pkgconfig vala ] ··· 17 17 18 18 meta = with stdenv.lib; { 19 19 homepage = "http://blog.lxde.org/?cat=28/"; 20 - license = licenses.gpl2Plus; 20 + license = licenses.lgpl21Plus; 21 21 description = "A glib-based library for file management"; 22 22 maintainers = [ maintainers.ttuegel ]; 23 23 platforms = platforms.linux;