2018-12-17 13:10:06 +01:00
|
|
|
{ ... }:
|
2018-10-31 22:49:43 +01:00
|
|
|
|
2018-12-17 13:37:58 +01:00
|
|
|
let
|
2018-12-17 13:10:06 +01:00
|
|
|
channels-nixos-stable-path = (builtins.fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/7e88992a8c7b2de0bcb89182d8686b27bd93e46a.tar.gz);
|
2019-01-26 23:59:31 +01:00
|
|
|
channels-nixos-stable = import channels-nixos-stable-path { overlays = [ (import ./nix/overlay.nix) ]; };
|
2018-10-31 22:49:43 +01:00
|
|
|
|
2018-12-17 13:37:58 +01:00
|
|
|
in
|
2018-12-17 13:10:06 +01:00
|
|
|
with channels-nixos-stable;
|
2018-10-31 22:49:43 +01:00
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "infra-env";
|
|
|
|
buildInputs = [
|
2018-12-17 13:10:06 +01:00
|
|
|
(with import (channels-nixos-stable-path+"/nixos") { configuration = {}; }; with config.system.build; [ nixos-generate-config nixos-install nixos-enter manual.manpages ])
|
2019-01-26 23:59:31 +01:00
|
|
|
just
|
2018-11-04 13:41:45 +01:00
|
|
|
git-crypt
|
|
|
|
vcsh
|
|
|
|
gnupg
|
2018-11-19 18:25:06 +01:00
|
|
|
|
|
|
|
vncdo
|
|
|
|
tesseract
|
|
|
|
imagemagick
|
2019-01-17 22:35:19 +01:00
|
|
|
|
|
|
|
esh
|
2018-10-31 22:49:43 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
# Set Environment Variables
|
|
|
|
RUST_BACKTRACE = 1;
|
|
|
|
}
|