adding shell for ags dev
This commit is contained in:
parent
5a985cad9f
commit
88dbdc172a
4 changed files with 60 additions and 0 deletions
25
.config/ags/flake.nix
Normal file
25
.config/ags/flake.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
|
||||
{
|
||||
description = "The Flake";
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||
flake-utils.url = "github:numtide/flake-utils";
|
||||
};
|
||||
|
||||
outputs = { nixpkgs, ... }:
|
||||
{
|
||||
flake-utils.lib.eachDefaultSystem
|
||||
(system:
|
||||
let
|
||||
pkgs = import nixpkgs {
|
||||
inherit system;
|
||||
};
|
||||
in rec
|
||||
{
|
||||
devShell = import ./shell.nix { inherit pkgs; };
|
||||
defaultPackage = pkgs.libsForQt5.callPackage ./default.nix { };
|
||||
}
|
||||
);
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue