adding flake to lightlyshaders
This commit is contained in:
parent
a7783ed72b
commit
d4bded0cb6
|
@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
|
||||||
owner = "a-parhom";
|
owner = "a-parhom";
|
||||||
repo = "LightlyShaders";
|
repo = "LightlyShaders";
|
||||||
rev = "v2.0";
|
rev = "v2.0";
|
||||||
sha256 = "sha256-5BpAXv5n9mxUMWjtIRJYCf4pQ76pCyKwGhk9uaHC69M=";
|
sha256 = "sha256-p94VwzGHB/4qxthvG507JEXx9j2MZDo6yyElq3XQxYc=";
|
||||||
};
|
};
|
||||||
|
|
||||||
# dontWrapQtApps = true;
|
# 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 {};
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
|
@ -705,7 +705,7 @@ Notice how I am including all of my software here. It may be a big file, but hav
|
||||||
macchina
|
macchina
|
||||||
# Dev tools
|
# Dev tools
|
||||||
<<dev-tools>>
|
<<dev-tools>>
|
||||||
# <<lightlyshaders>>
|
<<lightlyshaders>>
|
||||||
# <<librepresenter>>
|
# <<librepresenter>>
|
||||||
|
|
||||||
# (with import <nixpkgs> {}; libsForQt5.callPackage ../../bismuth {})
|
# (with import <nixpkgs> {}; libsForQt5.callPackage ../../bismuth {})
|
||||||
|
|
|
@ -389,7 +389,7 @@
|
||||||
# plasma5Packages.kirigami2
|
# plasma5Packages.kirigami2
|
||||||
sqlite
|
sqlite
|
||||||
fennel
|
fennel
|
||||||
# (with import <nixpkgs> {}; libsForQt5.callPackage ../../LightlyShaders {})
|
(with import <nixpkgs> {}; libsForQt5.callPackage ../../LightlyShaders {})
|
||||||
# (with import <nixpkgs> {}; libsForQt5.callPackage /home/chris/dev/church-presenter {})
|
# (with import <nixpkgs> {}; libsForQt5.callPackage /home/chris/dev/church-presenter {})
|
||||||
|
|
||||||
# (with import <nixpkgs> {}; libsForQt5.callPackage ../../bismuth {})
|
# (with import <nixpkgs> {}; libsForQt5.callPackage ../../bismuth {})
|
||||||
|
|
Loading…
Reference in a new issue