diff options
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/default.nix b/default.nix index aeb851d..1f50aa3 100644 --- a/default.nix +++ b/default.nix | |||
@@ -547,6 +547,10 @@ let | |||
547 | install -Dm644 "$src/config" -t "$out/etc/telegramircd/" | 547 | install -Dm644 "$src/config" -t "$out/etc/telegramircd/" |
548 | ''; | 548 | ''; |
549 | }; | 549 | }; |
550 | |||
551 | mypkgs.lesspipe = lesspipe.overrideAttrs(old: { | ||
552 | configureFlags = (old.configureFlags or []) ++ [ "--yes" ]; | ||
553 | }); | ||
550 | # https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh | 554 | # https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh |
551 | # https://github.com/NixOS/nixpkgs/blob/master/doc/languages-frameworks | 555 | # https://github.com/NixOS/nixpkgs/blob/master/doc/languages-frameworks |
552 | in | 556 | in |
@@ -597,6 +601,12 @@ in | |||
597 | inherit bundix; | 601 | inherit bundix; |
598 | bower2nix = nodePackages.bower2nix; | 602 | bower2nix = nodePackages.bower2nix; |
599 | inherit firefox; | 603 | inherit firefox; |
600 | # todo: unrar, unzip | 604 | inherit jq; |
605 | inherit lzo unzip bzip2 p7zip xz; | ||
606 | # unrar is unfree | ||
607 | inherit tig; | ||
601 | #inherit nixos; | 608 | #inherit nixos; |
609 | inherit emacs26-nox; | ||
610 | inherit highlight sourceHighlight; | ||
611 | pygmentize = python3Packages.pygments; | ||
602 | } | 612 | } |