about summary refs log tree commit diff
path: root/pkgs/applications/misc/fme/default.nix
blob: 03a9f875a7933239b7d389263e1e3f11889e5eaa (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{ lib
, stdenv
, fetchFromGitHub
, autoconf
, automake
, bc
, fluxbox
, gettext
, glibmm
, gtkmm2
, libglademm
, libsigcxx
, pkg-config
}:

stdenv.mkDerivation rec {
  pname = "fme";
  version = "1.1.3";

  src = fetchFromGitHub {
    owner = "rdehouss";
    repo = "fme";
    rev = "v${version}";
    sha256 = "sha256-P67OmExBdWM6NZhDyYceVJOZiy8RC+njk/QvgQcWZeQ=";
  };

  nativeBuildInputs = [
    autoconf
    automake
    gettext
    pkg-config
  ];
  buildInputs = [
    bc
    fluxbox
    glibmm
    gtkmm2
    libglademm
    libsigcxx
  ];

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

  meta = with lib; {
    homepage = "https://github.com/rdehouss/fme/";
    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.
    '';
    license = licenses.gpl2Plus;
    maintainers = [ maintainers.AndersonTorres ];
    platforms = platforms.linux;
  };
}