adding a flake for RoundedSBE

This commit is contained in:
Chris Cochrun 2023-01-20 05:33:59 -06:00
parent 7ddd241def
commit ac3cee2af9
3 changed files with 143 additions and 0 deletions

21
RoundedSBE/flake.nix Normal file
View file

@ -0,0 +1,21 @@
{
description = "Rounded Sierra Breeze Enhanced";
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 {};
}
);
}