diff options
author | William McKinnon <[email protected]> | 2022-04-27 14:31:46 -0400 |
---|---|---|
committer | William McKinnon <[email protected]> | 2022-04-27 14:31:46 -0400 |
commit | c37aba2736e31264bdcd52147a96fa85e17c8c5f (patch) | |
tree | d0240e9017af1daa03357d24e76570c09034dfcf /shell.nix | |
parent | 4660771f6a25b93062df0698634059f893ae1999 (diff) |
added nix flake
Diffstat (limited to 'shell.nix')
-rw-r--r-- | shell.nix | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/shell.nix b/shell.nix deleted file mode 100644 index 4ccc1cb9..00000000 --- a/shell.nix +++ /dev/null @@ -1,25 +0,0 @@ -let - unstableTarball = fetchTarball https://github.com/NixOS/nixpkgs/archive/nixos-unstable.tar.gz; - pkgs = import <nixpkgs> {}; - unstable = import unstableTarball {}; - - shell = pkgs.mkShell { - depsBuildBuild = with unstable; [ - pkg-config - ]; - - nativeBuildInputs = with unstable; [ - cmake meson ninja pkg-config wayland-scanner scdoc - ]; - - buildInputs = with unstable; [ - wayland libxkbcommon pcre json_c libevdev - pango cairo libinput libcap pam gdk-pixbuf librsvg - wayland-protocols libdrm wlroots dbus xwayland - - # wlroots - libGL pixman xorg.xcbutilwm xorg.libX11 libcap xorg.xcbutilimage xorg.xcbutilerrors mesa - libpng ffmpeg xorg.xcbutilrenderutil seatd - ]; - }; -in shell |