flexibee: init at 2019.2.5
This commit is contained in:
parent
4e6253392c
commit
202399f34e
34
pkgs/applications/office/flexibee/default.nix
Normal file
34
pkgs/applications/office/flexibee/default.nix
Normal file
@ -0,0 +1,34 @@
|
||||
{ stdenv, fetchurl, makeWrapper, jre }:
|
||||
|
||||
let
|
||||
version = "2019.2.5";
|
||||
majorVersion = builtins.substring 0 6 version;
|
||||
in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "flexibee";
|
||||
inherit version;
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://download.flexibee.eu/download/${majorVersion}/${version}/${pname}-${version}.tar.gz";
|
||||
sha256 = "0k94y4x6lj1vcb89a95v9mzl95mkpwp9n4a2gwvq0g90zpbnn493";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
cp -R usr/share/flexibee/ $out/
|
||||
install -Dm755 usr/bin/flexibee $out/bin/flexibee
|
||||
wrapProgram $out/bin/flexibee --set JAVA_HOME "${jre}"
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Client for an accouting economic system";
|
||||
homepage = "https://www.flexibee.eu/";
|
||||
license = licenses.unfree;
|
||||
maintainers = [ maintainers.mmahut ];
|
||||
platforms = [ "x86_64-linux" ];
|
||||
};
|
||||
}
|
@ -9418,6 +9418,8 @@ in
|
||||
flex_2_5_35 = callPackage ../development/tools/parsing/flex/2.5.35.nix { };
|
||||
flex = callPackage ../development/tools/parsing/flex { };
|
||||
|
||||
flexibee = callPackage ../applications/office/flexibee { };
|
||||
|
||||
flexcpp = callPackage ../development/tools/parsing/flexc++ { };
|
||||
|
||||
geis = callPackage ../development/libraries/geis {
|
||||
|
Loading…
Reference in New Issue
Block a user