You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
postsack/postsack-native/shell.nix

17 lines
273 B
Nix

with import <nixpkgs> {};
stdenv.mkDerivation {
name = "postsack-env";
buildInputs = [
rustc cargo xorg.libxcb
];
LD_LIBRARY_PATH = lib.makeLibraryPath [
xorg.libxcb
xorg.libX11
xorg.libXcursor
xorg.libXrandr
xorg.libXi
libglvnd
];
}