summaryrefslogtreecommitdiff
path: root/home/pkgs/firefoxPackages/shell.nix
blob: 25dfbf507d87bb9bde8fb49ede34f20a599bd315 (plain)
1
2
3
4
5
6
7
8
9
10
11
{ pkgs ? import <nixpkgs> { } }:

let
  nur = import (builtins.fetchTarball
    "https://github.com/nix-community/NUR/archive/master.tar.gz") {
      inherit pkgs;
    };
  settings = {
    nativeBuildInputs = [ nur.repos.rycee.firefox-addons-generator ];
  };
in import ~/.config/venv-manager { inherit pkgs settings; }