nixpkgs/pkgs/applications/misc/fme/default.nix

58 lines
1.1 KiB
Nix
Raw Normal View History

2021-04-25 17:48:35 +00:00
{ lib
, stdenv
, fetchurl
, autoconf
, automake
, bc
, fluxbox
, gettext
, glibmm
, gtkmm2
, libglademm
, libsigcxx
, pkg-config
}:
2014-09-03 07:47:47 +00:00
stdenv.mkDerivation rec {
pname = "fme";
2014-09-03 07:47:47 +00:00
version = "1.1.3";
2021-01-01 13:46:40 +00:00
2014-09-03 07:47:47 +00:00
src = fetchurl {
url = "https://github.com/rdehouss/fme/archive/v${version}.tar.gz";
2021-04-25 17:48:35 +00:00
hash = "sha256-0cgaajjA+q0ClDrWXW0DFL0gXG3oQWaaLv5D5MUD5j0=";
2014-09-03 07:47:47 +00:00
};
2021-04-25 17:48:35 +00:00
nativeBuildInputs = [
autoconf
automake
gettext
pkg-config
];
buildInputs = [
bc
fluxbox
glibmm
gtkmm2
libglademm
libsigcxx
];
2014-09-03 07:47:47 +00:00
preConfigure = ''
./autogen.sh
'';
meta = with lib; {
2021-04-25 17:48:35 +00:00
homepage = "https://github.com/rdehouss/fme/";
2014-09-03 07:47:47 +00:00
description = "Editor for Fluxbox menus";
longDescription = ''
2021-04-25 17:48:35 +00:00
Fluxbox Menu Editor is a menu editor for the Window Manager Fluxbox
written in C++ with the libraries Gtkmm, Glibmm, libglademm and gettext
for internationalization. Its user-friendly interface will help you to
edit, delete, move (Drag and Drop) a row, a submenu, etc very easily.
2014-09-03 07:47:47 +00:00
'';
2021-04-25 17:48:35 +00:00
license = licenses.gpl2Plus;
maintainers = [ maintainers.AndersonTorres ];
platforms = platforms.linux;
2014-09-03 07:47:47 +00:00
};
}