blob: 14636a8fdeb37817e21d8c1ef79a81d7dd49a38d (
plain)
1
2
3
4
5
6
7
8
|
with import <nixpkgs> {};
let
default = import ./default.nix {};
in mkShell {
inherit (default) buildInputs;
nativeBuildInputs = default.nativeBuildInputs ++ [ crate2nix openssl pkgconfig ];
}
|