mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
df5639183c
Also set platforms for some packages where it was missing.
20 lines
607 B
Nix
20 lines
607 B
Nix
{ stdenv, fetchurl, glib, gtk, intltool, menu-cache, pango, pkgconfig, vala }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libfm-1.2.0";
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/pcmanfm/libfm-1.2.0.tar.xz";
|
|
sha256 = "08pwdrmfm9rl41lj2niyjqq2bdvydxk7v2shjxh5gk1xwj238lgh";
|
|
};
|
|
|
|
buildInputs = [ glib gtk intltool menu-cache pango pkgconfig vala ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "http://blog.lxde.org/?cat=28/";
|
|
license = licenses.gpl2Plus;
|
|
description = "A glib-based library for file management";
|
|
maintainers = [ maintainers.ttuegel ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|