Formatting update on flake.nix; nix flake update

This commit is contained in:
James Eversole 2024-10-13 12:51:17 -05:00
parent ff0677c53e
commit 0c54a92057
2 changed files with 44 additions and 46 deletions

6
flake.lock generated
View File

@ -20,11 +20,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1728764407,
"narHash": "sha256-J4kaIxwjrGVQkLA6njCFH09xj2oCf/VWFircIy7b65k=",
"lastModified": 1728840985,
"narHash": "sha256-WUjdtdrRa/mPH6x918uI0nTVPidrTgkBn2VdvuOOtZo=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "4ada35702a7146e1df24f8d6987a1d7c1a5a4707",
"rev": "d7a38a56893692ae64ca565e9b03bc6c5cae47cb",
"type": "github"
},
"original": {

View File

@ -7,8 +7,7 @@
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
flake-utils.lib.eachDefaultSystem (system: let
pkgs = nixpkgs.legacyPackages.${system};
packageName = "HELPS";
containerPackageName = "${packageName}-container";
@ -20,7 +19,6 @@
HELPS = pkgs.haskell.lib.justStaticExecutables self.packages.${system}.default;
in {
packages.${packageName} =
haskellPackages.callCabal2nix packageName self rec {};