nur-packages

My NUR packages
git clone git://git.sikmir.ru/nur-packages
Log | Files | Refs | README | LICENSE

package.nix (816B)


      1 {
      2   lib,
      3   stdenv,
      4   fetchFromGitHub,
      5   autoreconfHook,
      6   wxGTK32,
      7 }:
      8 
      9 stdenv.mkDerivation (finalAttrs: {
     10   pname = "render_geojson";
     11   version = "0-unstable-2018-07-11";
     12 
     13   __structuredAttrs = true;
     14 
     15   src = fetchFromGitHub {
     16     owner = "pedro-vicente";
     17     repo = "render_geojson";
     18     rev = "ed65a22f45fc09784fa113fe93254492d88663c2";
     19     hash = "sha256-X8l4eIt6K8B6w2whZFdnKHRUBM2jQQDVIrAFxO1Xbhg=";
     20   };
     21 
     22   nativeBuildInputs = [ autoreconfHook ];
     23 
     24   buildInputs = [ wxGTK32 ];
     25 
     26   meta = {
     27     description = "C++ geoJSON and topoJSON parser and rendering using the WxWidgets GUI library";
     28     homepage = "https://github.com/pedro-vicente/render_geojson";
     29     license = lib.licenses.asl20;
     30     maintainers = [ lib.maintainers.sikmir ];
     31     platforms = lib.platforms.linux;
     32     skip.ci = stdenv.isDarwin;
     33   };
     34 })