diff options
| author | uakci <uakci@uakci.pl> | 2022-05-13 22:30:14 +0200 |
|---|---|---|
| committer | uakci <uakci@uakci.pl> | 2022-05-13 22:30:14 +0200 |
| commit | 7786e7c9992ca04f7b0d9335ae05eae52a912c28 (patch) | |
| tree | e81a50391185003ebbb8dde16010358ae338432b | |
| parent | dirty fix for imagemagick not showing up in $PATH (diff) | |
| download | nuogai-7786e7c9992ca04f7b0d9335ae05eae52a912c28.tar.gz nuogai-7786e7c9992ca04f7b0d9335ae05eae52a912c28.zip | |
try 2
| -rw-r--r-- | flake.nix | 4 | ||||
| -rw-r--r-- | module.nix | 1 |
2 files changed, 2 insertions, 3 deletions
@@ -60,14 +60,14 @@ name = "nuogai"; src = ./.; modules = ./gomod2nix.toml; - buildInputs = (builtins.attrValues schemePkgs) + propagatedBuildInputs = (builtins.attrValues schemePkgs) ++ [ toaqScript imagemagick' ]; }; in { defaultPackage = nuogai; packages = schemePkgs // { inherit toaqScript nuogai; - imagemagick = imagemagick'; + imagemagickWithPango = imagemagick'; }; nixosModule = { config, pkgs, lib, ... }@args: import ./module.nix (args // { inherit self system; }); @@ -29,7 +29,6 @@ in with lib; { }; script = '' export TOKEN=$(cat ${cfg.tokenPath}) - export PATH+=${self.packages.${system}.imagemagick}/bin ${pkg}/bin/nuogai ''; }; |
