Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-18.03 23 lines 631 B view raw
1{ stdenv, fetchurl, glib, pkgconfig, libfm-extra }: 2 3let name = "menu-cache-1.1.0"; 4in 5stdenv.mkDerivation { 6 inherit name; 7 src = fetchurl { 8 url = "mirror://sourceforge/lxde/${name}.tar.xz"; 9 sha256 = "1iry4zlpppww8qai2cw4zid4081hh7fz8nzsp5lqyffbkm2yn0pd"; 10 }; 11 12 nativeBuildInputs = [ pkgconfig ]; 13 14 buildInputs = [ glib libfm-extra ]; 15 16 meta = with stdenv.lib; { 17 homepage = http://blog.lxde.org/?tag=menu-cache; 18 license = licenses.gpl2Plus; 19 description = "Library to read freedesktop.org menu files"; 20 maintainers = [ maintainers.ttuegel ]; 21 platforms = platforms.linux ++ platforms.darwin; 22 }; 23}