aboutsummaryrefslogtreecommitdiff
path: root/default.nix
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2019-03-10 15:16:06 +0100
committerIsmaël Bouya <ismael.bouya@normalesup.org>2019-03-10 15:16:06 +0100
commit39256be8fcb3de9cb5626f86a67a309536be2b37 (patch)
treeeece06a4305b700cf27ff671d1614e0cd390c3f7 /default.nix
parentb236d74d47ba3db9f7dbe1bdcd4dd8ef8c264fc1 (diff)
downloadNix-39256be8fcb3de9cb5626f86a67a309536be2b37.tar.gz
Nix-39256be8fcb3de9cb5626f86a67a309536be2b37.tar.zst
Nix-39256be8fcb3de9cb5626f86a67a309536be2b37.zip
Add compression tools, less colorization and other tools
Diffstat (limited to 'default.nix')
-rw-r--r--default.nix12
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
552in 556in
@@ -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 }