adding flake to lightlyshaders
This commit is contained in:
parent
a7783ed72b
commit
d4bded0cb6
4 changed files with 24 additions and 3 deletions
|
@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
|
|||
owner = "a-parhom";
|
||||
repo = "LightlyShaders";
|
||||
rev = "v2.0";
|
||||
sha256 = "sha256-5BpAXv5n9mxUMWjtIRJYCf4pQ76pCyKwGhk9uaHC69M=";
|
||||
sha256 = "sha256-p94VwzGHB/4qxthvG507JEXx9j2MZDo6yyElq3XQxYc=";
|
||||
};
|
||||
|
||||
# dontWrapQtApps = true;
|
||||
|
|
21
LightlyShaders/flake.nix
Normal file
21
LightlyShaders/flake.nix
Normal 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 {};
|
||||
}
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue