summary refs log tree commit diff
path: root/pkgs/applications/office
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2017-01-18 15:54:04 +0100
committerVladimír Čunát <vcunat@gmail.com>2017-01-18 15:54:04 +0100
commit40003aa2ed789ae48e4998590035ba978501c44f (patch)
tree73ffb38a12c61db0720f17c8d3a77134ee85334c /pkgs/applications/office
parent68c95309980d6e6e1dc315628de55844f8b02ca3 (diff)
parent6ced9ee7a49081d3019dfa10ae49af83a12d038f (diff)
downloadnixlib-40003aa2ed789ae48e4998590035ba978501c44f.tar
nixlib-40003aa2ed789ae48e4998590035ba978501c44f.tar.gz
nixlib-40003aa2ed789ae48e4998590035ba978501c44f.tar.bz2
nixlib-40003aa2ed789ae48e4998590035ba978501c44f.tar.lz
nixlib-40003aa2ed789ae48e4998590035ba978501c44f.tar.xz
nixlib-40003aa2ed789ae48e4998590035ba978501c44f.tar.zst
nixlib-40003aa2ed789ae48e4998590035ba978501c44f.zip
Merge branch 'master' into staging
Diffstat (limited to 'pkgs/applications/office')
-rw-r--r--pkgs/applications/office/tryton/default.nix35
1 files changed, 35 insertions, 0 deletions
diff --git a/pkgs/applications/office/tryton/default.nix b/pkgs/applications/office/tryton/default.nix
new file mode 100644
index 000000000000..31774b6b55c1
--- /dev/null
+++ b/pkgs/applications/office/tryton/default.nix
@@ -0,0 +1,35 @@
+{ stdenv, fetchurl, python2Packages, librsvg }:
+
+with stdenv.lib;
+
+python2Packages.buildPythonApplication rec {
+  name = "tryton-${version}";
+  version = "4.2.1";
+  src = fetchurl {
+    url = "mirror://pypi/t/tryton/${name}.tar.gz";
+    sha256 = "1ry3kvbk769m8rwqa90pplfvmmgsv4jj9w1aqhv892smia8f0ybm";
+  };
+  propagatedBuildInputs = with python2Packages; [
+    chardet
+    dateutil
+    pygtk
+    librsvg
+  ];
+  makeWrapperArgs = [
+    ''--set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE"''
+  ];
+  meta = {
+    description = "The client of the Tryton application platform";
+    longDescription = ''
+      The client for Tryton, a three-tier high-level general purpose
+      application platform under the license GPL-3 written in Python and using
+      PostgreSQL as database engine.
+
+      It is the core base of a complete business solution providing
+      modularity, scalability and security.
+    '';
+    homepage = http://www.tryton.org/;
+    license = licenses.gpl3Plus;
+    maintainers = [ maintainers.johbo ];
+  };
+}