adding ags stuff
This commit is contained in:
parent
88dbdc172a
commit
1599875a5c
7 changed files with 142 additions and 14 deletions
|
@ -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 { };
|
||||
}
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue