Meg's Code Collection
zigmod
about
branches
tags
log
tree
search
Search
zigmod
shell.nix
pretty
plain
permalink
blame
history
•
12 lines
•
181 B
1
with import <nixpkgs> {};
2
3
pkgs.mkShell {
4
nativeBuildInputs = with pkgs; [
5
git
6
mercurial
7
wget unzip gnutar
8
pkg-config zlib
9
];
10
11
hardeningDisable = [ "all" ];
12
}