Skip to content

Instantly share code, notes, and snippets.

@Hoverbear

Hoverbear/x.nix Secret

Created January 9, 2018 20:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Hoverbear/a21ee665ea891f204bc5fa811ea8b016 to your computer and use it in GitHub Desktop.
Save Hoverbear/a21ee665ea891f204bc5fa811ea8b016 to your computer and use it in GitHub Desktop.
let
unstable = import <unstable> { overlays = [ moz ]; };
moz = import (builtins.fetchTarball https://github.com/mozilla/nixpkgs-mozilla/archive/master.tar.gz);
in {
devEnv = unstable.stdenv.mkDerivation {
name = "tikv";
buildInputs = with unstable; [
zlib
cmake
gcc
gnumake
openssl
go
rustup
rustChannelOf { date = "2018-01-09"; channel = "nightly"; }.rust
];
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment