adding ags stuff

This commit is contained in:
Chris Cochrun 2024-06-17 11:25:35 -05:00
parent 88dbdc172a
commit 1599875a5c
7 changed files with 142 additions and 14 deletions

View file

@ -7,19 +7,35 @@
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { nixpkgs, ... }:
{
flake-utils.lib.eachDefaultSystem
(system:
let
pkgs = import nixpkgs {
inherit system;
outputs = inputs: with inputs;
flake-utils.lib.eachDefaultSystem
(system:
let
pkgs = import nixpkgs {
inherit system;
};
nativeBuildInputs = with pkgs; [
];
buildInputs = with pkgs; [
stdenv
clojure
clojure-lsp
clj-kondo
leiningen
];
nativeLibs = with pkgs; [
];
in rec
{
devShell = pkgs.mkShell {
nativeBuildInputs = nativeBuildInputs;
buildInputs = buildInputs;
nativeLibs = nativeLibs;
};
in rec
{
devShell = import ./shell.nix { inherit pkgs; };
defaultPackage = pkgs.libsForQt5.callPackage ./default.nix { };
}
);
};
defaultPackage = pkgs.libsForQt5.callPackage ./default.nix { };
}
);
}