mirror of
https://github.com/louis-e/arnis.git
synced 2026-01-22 21:17:49 -05:00
35 lines
824 B
Nix
35 lines
824 B
Nix
{
|
|
inputs = {
|
|
fenix = {
|
|
url = "github:nix-community/fenix";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
nixpkgs.url = "nixpkgs/nixos-unstable";
|
|
};
|
|
|
|
outputs = { self, fenix, flake-utils, nixpkgs }:
|
|
flake-utils.lib.eachDefaultSystem (system:
|
|
let
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
fenixPkgs = (fenix.packages.${system}.stable);
|
|
in
|
|
{
|
|
devShell = pkgs.mkShell
|
|
{
|
|
buildInputs = with pkgs; [
|
|
openssl.dev
|
|
pkg-config
|
|
fenixPkgs.toolchain
|
|
wayland
|
|
glib
|
|
gdk-pixbuf
|
|
pango
|
|
gtk3
|
|
libsoup_3.dev
|
|
webkitgtk_4_1.dev
|
|
];
|
|
};
|
|
});
|
|
}
|