about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/misc/fme/default.nix
blob: 34d5a45b8ea1e7626d86e6d72b2d6f770f5429cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ stdenv, fetchurl, pkgconfig, autoconf, automake, gettext
, fluxbox, bc, gtkmm2, glibmm, libglademm, libsigcxx }:

stdenv.mkDerivation rec {

  pname = "fme";
  version = "1.1.3";
  
  src = fetchurl {
    url = "https://github.com/rdehouss/fme/archive/v${version}.tar.gz";
    sha256 = "d1c81a6a38c0faad02943ad65d6d0314bd205c6de841669a2efe43e4c503e63d";
  };

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ autoconf automake gettext fluxbox bc gtkmm2 glibmm libglademm libsigcxx ];

  preConfigure = ''
    ./autogen.sh
  '';

  meta = with stdenv.lib; {
    description = "Editor for Fluxbox menus";
    longDescription = ''
      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.
    '';
    homepage = "https://github.com/rdehouss/fme/";
    license = licenses.gpl2;
    maintainers = [ maintainers.AndersonTorres ];
    platforms = platforms.linux;
  };
}