bakare/shell.nix
Cyryl Płotnicki 11f3981a2d add nix shell
2020-11-07 10:19:54 +00:00

14 lines
434 B
Nix

let
moz_overlay = import (builtins.fetchTarball https://github.com/mozilla/nixpkgs-mozilla/archive/master.tar.gz);
nixpkgs = import <nixpkgs> { overlays = [ moz_overlay ]; };
channel = (nixpkgs.rustChannelOf { rustToolchain = ./rust-toolchain; });
in
with nixpkgs;
stdenv.mkDerivation {
name = "genpass_shell";
buildInputs = [
channel.rust
cacert openssl openssh zlib
llvm pkgconfig git
];
}