FME: New Package #3695
This commit is contained in:
parent
7a47d21aec
commit
4dac1990d7
34
pkgs/applications/misc/fme/default.nix
Normal file
34
pkgs/applications/misc/fme/default.nix
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
{ stdenv, fetchurl, pkgconfig, autoconf, automake, gettext
|
||||||
|
, fluxbox, bc, gtkmm, glibmm, libglademm, libsigcxx
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec{
|
||||||
|
|
||||||
|
name = "fme-${version}";
|
||||||
|
version = "1.1.3";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/rdehouss/fme/archive/v${version}.tar.gz";
|
||||||
|
sha256 = "d1c81a6a38c0faad02943ad65d6d0314bd205c6de841669a2efe43e4c503e63d";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ pkgconfig autoconf automake gettext fluxbox bc gtkmm glibmm libglademm libsigcxx ];
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
./autogen.sh
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
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 = stdenv.lib.licenses.gpl2;
|
||||||
|
maintainers = [ stdenv.lib.maintainers.AndersonTorres ];
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -8844,6 +8844,11 @@ let
|
|||||||
|
|
||||||
fluxbox = callPackage ../applications/window-managers/fluxbox { };
|
fluxbox = callPackage ../applications/window-managers/fluxbox { };
|
||||||
|
|
||||||
|
fme = callPackage ../applications/misc/fme {
|
||||||
|
inherit (gnome) libglademm;
|
||||||
|
inherit pkgconfig autoconf automake gettext;
|
||||||
|
};
|
||||||
|
|
||||||
freecad = callPackage ../applications/graphics/freecad {
|
freecad = callPackage ../applications/graphics/freecad {
|
||||||
opencascade = opencascade_6_5;
|
opencascade = opencascade_6_5;
|
||||||
inherit (pythonPackages) matplotlib pycollada;
|
inherit (pythonPackages) matplotlib pycollada;
|
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user