chore: cleanup + update nix flake

This commit is contained in:
seth 2024-01-27 23:49:35 -05:00
parent f4fa737124
commit 24c8406590
No known key found for this signature in database
GPG key ID: D31BD0D494BBEE86
6 changed files with 91 additions and 109 deletions

View file

@ -6,12 +6,12 @@
perSystem = {
pkgs,
system,
config,
self',
...
}: {
packages = {
refraction = pkgs.callPackage ./derivation.nix {
version = builtins.substring 0 8 self.lastModifiedDate or "dirty";
version = builtins.substring 0 7 self.rev or "dirty";
inherit
(pkgs.darwin.apple_sdk.frameworks)
@ -23,7 +23,7 @@
naersk = inputs.naersk.lib.${system};
};
default = config.packages.refraction;
default = self'.packages.refraction;
};
};
}