tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
libfm: update frm 1.2.2.1 to 1.2.3
Vincent Laporte
11 years ago
8a96d425
0b34eb14
+5
-5
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
libfm
default.nix
+5
-5
pkgs/development/libraries/libfm/default.nix
···
1
{ stdenv, fetchurl, glib, gtk, intltool, menu-cache, pango, pkgconfig, vala
2
, extraOnly ? false }:
3
-
let name = "libfm-1.2.2.1";
4
inherit (stdenv.lib) optional;
5
in
6
stdenv.mkDerivation {
7
-
name = if extraOnly then "libfm-extra-1.2.2.1" else "libfm-1.2.2.1";
8
src = fetchurl {
9
-
url = "mirror://sourceforge/pcmanfm/libfm-1.2.2.1.tar.xz";
10
-
sha256 = "0aa37arr0h2nppjh7ppf00np2d8mb43imvfq9b7wq5cnzpvs7c6v";
11
};
12
13
buildInputs = [ glib gtk intltool pango pkgconfig vala ]
···
17
18
meta = with stdenv.lib; {
19
homepage = "http://blog.lxde.org/?cat=28/";
20
-
license = licenses.gpl2Plus;
21
description = "A glib-based library for file management";
22
maintainers = [ maintainers.ttuegel ];
23
platforms = platforms.linux;
···
1
{ stdenv, fetchurl, glib, gtk, intltool, menu-cache, pango, pkgconfig, vala
2
, extraOnly ? false }:
3
+
let
4
inherit (stdenv.lib) optional;
5
in
6
stdenv.mkDerivation {
7
+
name = if extraOnly then "libfm-extra-1.2.3" else "libfm-1.2.3";
8
src = fetchurl {
9
+
url = "mirror://sourceforge/pcmanfm/libfm-1.2.3.tar.xz";
10
+
sha256 = "1ygvw52262r3jp1f45m9cdpx5xgvd4rkyfszslfqvg2c99ig34n6";
11
};
12
13
buildInputs = [ glib gtk intltool pango pkgconfig vala ]
···
17
18
meta = with stdenv.lib; {
19
homepage = "http://blog.lxde.org/?cat=28/";
20
+
license = licenses.lgpl21Plus;
21
description = "A glib-based library for file management";
22
maintainers = [ maintainers.ttuegel ];
23
platforms = platforms.linux;