about summary refs log tree commit diff stats
path: root/hm
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-10-22 14:18:05 +0200
committerSoispha <soispha@vhack.eu>2023-10-22 14:18:05 +0200
commit4271564beea263b21c31c0512995ff616c69a05c (patch)
tree9ea923d9c29ef7661ce8bf6a621c4926de9d2cd0 /hm
parentfix(hm/pkgs/scr/neorg): Remove leading whitespace in message (diff)
downloadnixos-config-4271564beea263b21c31c0512995ff616c69a05c.tar.gz
nixos-config-4271564beea263b21c31c0512995ff616c69a05c.zip
feat(hm/conf/firefox/scripts): Package through the flake outputs
Diffstat (limited to '')
-rw-r--r--hm/soispha/conf/firefox/scripts/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/hm/soispha/conf/firefox/scripts/default.nix b/hm/soispha/conf/firefox/scripts/default.nix
new file mode 100644
index 00000000..a7270980
--- /dev/null
+++ b/hm/soispha/conf/firefox/scripts/default.nix
@@ -0,0 +1,29 @@
+{
+  pkgs,
+  sysLib,
+  ...
+}: let
+  unzip_mozlz4 = pkgs.stdenv.mkDerivation {
+    name = "unzip_mozlz4";
+    propagatedBuildInputs = [
+      (pkgs.python3.withPackages (pythonPackages:
+        with pythonPackages; [
+          lz4
+        ]))
+    ];
+    dontUnpack = true;
+    installPhase = "install -Dm755 ${./unzip_mozlz4.py} $out/bin/unzip_mozlz4";
+  };
+  extract_cookies = sysLib.writeShellScriptWithLibrary {
+    name = "extract_cookies";
+    src = ./extract_cookies.sh;
+    dependencies = with pkgs; [
+      bash
+      sqlite
+      mktemp
+      coreutils
+    ];
+  };
+in {
+  inherit unzip_mozlz4 extract_cookies;
+}