adding flake to lightlyshaders

This commit is contained in:
Chris Cochrun 2022-11-07 11:31:33 -06:00
parent a7783ed72b
commit d4bded0cb6
4 changed files with 24 additions and 3 deletions

21
LightlyShaders/flake.nix Normal file
View file

@ -0,0 +1,21 @@
{
description = "A Church Presentation Application";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem
(system:
let
pkgs = nixpkgs.legacyPackages.${system};
src = ./.;
in
{
devShell = import ./shell.nix { inherit pkgs; };
defaultPackage = pkgs.libsForQt5.callPackage ./default.nix {};
}
);
}