{ description = "Flake for development of fennec launcher"; inputs = { nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; }; outputs = { nixpkgs, ... }: let system = "x86_64-linux"; in { devShells."${system}".default = let pkgs = import nixpkgs { inherit system; }; in pkgs.mkShell { packages = with pkgs; [ gcc wineWow64Packages.stagingFull openssl pkg-config ]; LD_LIBRARY_PATH = with pkgs; lib.makeLibraryPath [ openssl glibc ]; shellHook = '' export WINEPREFIX=$PWD/pfx echo "`git --version`" ''; }; }; }