lots of refactoring

This commit is contained in:
Chris Cochrun 2023-06-09 07:02:04 -05:00
parent a1191ff72a
commit e6901ef554
21 changed files with 37 additions and 103 deletions

21
pkgs/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 {};
}
);
}