Commit Graph
27 Commits
Author SHA1 Message Date
Chris Hodapp 88fe696f43 appleseed: Fix non-executable items and Python bindings 2018-07-20 21:42:53 -04:00
Chris Hodapp de64c6f296 libfive: init at 2018-07-01 2018-07-02 16:24:30 -04:00
Chris Hodapp a0144c7fd8 appleseed, structure-synth, luxcorerender: libGLU instead of mesa_glu 2018-06-30 09:14:21 -04:00
Chris Hodapp b2831de441 yafaray-core: init at v3.3.0 2018-06-26 09:52:27 -04:00
Chris Hodapp ec73f89a55 structure-synth: init at v1.5 2018-06-24 15:36:07 -04:00
Chris Hodapp 3b880f55b5 appleseed: init at 1.9.0-beta, osl: init at 1.9.9, seexpr: init at 2.11 2018-06-21 16:18:13 -04:00
Chris Hodapp 1b187b3961 luxcorerender: init at 2.0, embree: init at 2.17.4 2018-06-21 13:12:02 -04:00
Chris Hodapp 80ea03ee79 draftsight: 2017-SP2 -> 2018-SP2, remove gstreamer
Also, fixed URL scheme to link directly.

Addressing https://github.com/NixOS/nixpkgs/issues/39975
2018-05-06 09:00:59 -04:00
Chris Hodapp c6bd327af8 darktable: Removed unneeded dependencies
Based on what LebedevRI told me on IRC and in
https://github.com/darktable-org/darktable/pull/1474
2018-02-09 13:13:31 +01:00
Chris Hodapp 4c623b3d92 python-packages easydict: init at 1.7 2017-08-21 01:22:38 +02:00
Chris Hodapp c7864745bd glslviewer: init at 1.2 2017-08-03 20:58:03 -04:00
Chris Hodapp c27f692de6 opencv: Add optional Tesseract support 2017-08-01 07:21:51 -04:00
Chris Hodapp 70bbd5e84a opencv: Work around build failure with enableContrib & Python 2017-07-26 21:03:51 -04:00
Chris Hodapp 957e653b41 draftsight: 2017-SP1 -> 2017-SP2 2017-07-17 07:44:19 -04:00
Chris Hodapp a24960d214 autotrace: init at 0.31.1
Add ApplicationServices for Darwin build

Clean up comments
2017-06-10 12:08:54 -04:00
Chris Hodapp f277137522 gdal: add GeoPDF support via poppler 2017-05-04 09:34:19 +02:00
Chris Hodapp 7680f83f9d draftsight: init at 2017-SP1
DraftSight is "a professional-grade 2D design and drafting solution
that lets you create, edit, view and markup any kind of 2D drawing."
It is available as a binary .deb package for Linux. This package jumps
through the necessary hoops to make it run properly.
2017-05-02 11:51:58 -04:00
Chris Hodapp 29969a5ec7 rstudio: Fix recompilation issue with custom package set
This attempts to fix the issue described at
https://github.com/NixOS/nixpkgs/pull/22219#issuecomment-291801133.
Any change to the custom packages passed to RStudio causes this to
completely rebuild RStudio, which is completely unnecessary and also a
bit of a hindrance as it's a fairly slow build.

This rolls back most of that old PR, and instead implements something
more like rWrapper.  Existing configurations with the old useRPackages
will break.
2017-05-01 09:46:40 -04:00
Chris Hodapp 610570e979 gdal: Add SQLite & Spatialite support 2017-04-30 20:21:16 -04:00
Chris Hodapp cc4f861f82 cloud-print-connector: init at unstable-2017-01-19
This adds a fairly basic build for just the binaries for the Google
Cloud Print CUPS connector (gcp-cups-connector), and gcp-connector-util
to set it up in the first place. In the future I would like to
streamline the configuration more and make gcp-cups-connector a
proper NixOS service - as right now it must be run by hand.
2017-04-30 08:54:54 -04:00
Chris Hodapp 489fa7b723 ezdxf: Add hodapp as maintainer 2017-04-25 17:34:52 -04:00
Chris Hodapp 244b575a1d ezdxf (Python package): init at 0.8.1 2017-04-25 10:07:15 -04:00
Chris Hodapp 5864baa4c6 mapnik: add optional PostgreSQL dependency
Closes #25063.
2017-04-21 16:50:43 +02:00
Chris Hodapp 80beb55cfc imager (r-modules): add pkgs.x11 to fix build, unmark imager/ForestTools as broken 2017-04-20 14:18:01 -04:00
Chris Hodapp 228f33b21d osm2pgsql: init at 0.92.1-unstable 2017-04-17 16:19:41 -04:00
Chris Hodapp 7638578342 RStudio: Optionally allow packages from custom R environment
https://nixos.org/nixpkgs/manual/#r-packages contains a method for
setting up an R environment with a specific set of libraries, and it
creates an R wrapper which points R to those libraries.

The package RStudio relies on the standard R package, which then
cannot access any of the libraries specified in a custom R
environment.  While one may easily use pkgs.rstudio.override to change
rstudio's R dependency to the custom R environment, this accomplishes
nothing because while RStudio runs the correct R wrapper it clears out
the environment variable R_LIBS_SITE - and so it is still unable to
use any of those packages.

In order to work around this problem, these changes allow the user to
optionally modify rstudio's wrapper to set environment variable
R_PROFILE_USER to an R script which sets R's .libPaths(..) to point to
the same libraries; that script is generated from R_LIBS_SITE in the R
wrapper.

By default, this change has no effect.  If R is overridden to
something else, and if useRPackages is changed from its default of
false, then the change described above is made; for instance:

{
  packageOverrides = pkgs: let self = pkgs.pkgs; in
  rec {
    rEnv = pkgs.rWrapper.override {
      packages = with self.rPackages; [
        dplyr ggplot2 e1071 rpart reshape
      ];
    };
    rstudioEnv = pkgs.rstudio.override { R = rEnv; useRPackages = true; };
  };
}
2017-01-27 18:54:50 -05:00
Chris Hodapp e3dedd4b57 darktable: 2.0.7 -> 2.2.0 2016-12-31 14:59:30 -05:00