Skip to content
This repository has been archived by the owner on Nov 27, 2024. It is now read-only.

Commit

Permalink
pkgs: add grass-addons package
Browse files Browse the repository at this point in the history
grass-plugins: build one package per plugin
  • Loading branch information
imincik committed Aug 6, 2024
1 parent 875a594 commit a8fe82e
Show file tree
Hide file tree
Showing 6 changed files with 2,295 additions and 0 deletions.
21 changes: 21 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,23 @@
inherit gdal geos pdal proj;
};

grass-plugins =
let
plugins = import ./pkgs/grass/plugins-list.nix;
in
mapAttrs'
(
name: value: {
name = "grass-plugin-${name}";
value = pkgs.callPackage ./pkgs/grass/plugins.nix {
name = name;
plugin = value;

inherit grass;
};
}
)
plugins;

# QGIS
qgis-python =
Expand Down Expand Up @@ -314,6 +331,7 @@

# Applications
grass
grass-plugins
qgis
qgis-unwrapped
qgis-ltr
Expand All @@ -326,6 +344,9 @@
nixGL;
}

# GRASS plugins
// grass-plugins

# QGIS plugins
// qgis-plugins
// qgis-ltr-plugins
Expand Down
1 change: 1 addition & 0 deletions pkgs/grass/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
plugins.xml
Loading

0 comments on commit a8fe82e

Please sign in to comment.