diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2019-05-07 15:07:35 +0200 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2019-05-07 15:07:35 +0200 |
commit | e6abbae25ce533e8d38a0e8318b1d5d5a35d813d (patch) | |
tree | 595ba9116ce5593594994bfcfec775c1b4488ba5 /pkgs/webapps/yourls | |
parent | 79d2de8b83d765721b2cb720b2bc59673df54a4a (diff) | |
download | Nix-e6abbae25ce533e8d38a0e8318b1d5d5a35d813d.tar.gz Nix-e6abbae25ce533e8d38a0e8318b1d5d5a35d813d.tar.zst Nix-e6abbae25ce533e8d38a0e8318b1d5d5a35d813d.zip |
Fix passthru’s in pkgs
Diffstat (limited to 'pkgs/webapps/yourls')
-rw-r--r-- | pkgs/webapps/yourls/default.nix | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/webapps/yourls/default.nix b/pkgs/webapps/yourls/default.nix index cc880cd..4bcfa4c 100644 --- a/pkgs/webapps/yourls/default.nix +++ b/pkgs/webapps/yourls/default.nix | |||
@@ -6,8 +6,10 @@ let | |||
6 | builtins.concatStringsSep "\n" ( | 6 | builtins.concatStringsSep "\n" ( |
7 | map (value: "ln -s ${value} $out/user/plugins/${value.pluginName}") plugins | 7 | map (value: "ln -s ${value} $out/user/plugins/${value.pluginName}") plugins |
8 | ); | 8 | ); |
9 | passthru.plugins = plugins; | 9 | passthru = old.passthru // { |
10 | passthru.withPlugins = morePlugins: old.withPlugins (morePlugins ++ plugins); | 10 | inherit plugins; |
11 | withPlugins = morePlugins: old.withPlugins (morePlugins ++ plugins); | ||
12 | }; | ||
11 | }); | 13 | }); |
12 | package = stdenv.mkDerivation (mylibs.fetchedGithub ./yourls.json // rec { | 14 | package = stdenv.mkDerivation (mylibs.fetchedGithub ./yourls.json // rec { |
13 | installPhase = '' | 15 | installPhase = '' |