about summary refs log tree commit diff stats
path: root/hm/soispha/conf/firefox/functions/extensions/default.nix
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-10-21 22:30:59 +0200
committerSoispha <soispha@vhack.eu>2023-10-21 22:30:59 +0200
commit27a254a27df47cac88ce8053b4efe575cf9c481e (patch)
tree5441124451062b275592bf798e9da88f10851f26 /hm/soispha/conf/firefox/functions/extensions/default.nix
parentfix(hm/conf/firefox/scr/extensions): Add required 'default_area' (diff)
downloadnixos-config-27a254a27df47cac88ce8053b4efe575cf9c481e.zip
feat(hm/conf/firefox): Use the policy.json file for configs
Diffstat (limited to 'hm/soispha/conf/firefox/functions/extensions/default.nix')
-rw-r--r--hm/soispha/conf/firefox/functions/extensions/default.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/hm/soispha/conf/firefox/functions/extensions/default.nix b/hm/soispha/conf/firefox/functions/extensions/default.nix
deleted file mode 100644
index b84461c7..00000000
--- a/hm/soispha/conf/firefox/functions/extensions/default.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{pkgs, ...}: {
-  pname,
-  version,
-  addonId,
-  url,
-  sha256,
-  #meta,
-  ...
-}:
-pkgs.stdenv.mkDerivation {
-  name = "${pname}-${version}";
-
-  #inherit meta;
-
-  src = builtins.fetchurl {inherit url sha256;};
-
-  preferLocalBuild = true;
-  allowSubstitutes = true;
-
-  buildCommand = ''
-    dst="$out/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"
-    mkdir -p "$dst"
-    install -v -m644 "$src" "$dst/${addonId}.xpi"
-  '';
-}