this repo has no description
1{
2 description = "Flake for development of fennec launcher";
3
4 inputs = {
5 nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
6 };
7
8 outputs =
9 {
10 nixpkgs,
11 ...
12 }:
13 let
14 system = "x86_64-linux";
15 in
16 {
17 devShells."${system}".default =
18 let
19 pkgs = import nixpkgs {
20 inherit system;
21 };
22 in
23 pkgs.mkShell {
24 packages = with pkgs; [
25 gcc
26 wineWow64Packages.stagingFull
27 openssl
28 pkg-config
29 ];
30
31 LD_LIBRARY_PATH =
32 with pkgs;
33 lib.makeLibraryPath [
34 openssl
35 glibc
36 ];
37
38 shellHook = ''
39 export WINEPREFIX=$PWD/pfx
40 echo "`git --version`"
41 '';
42 };
43 };
44}