Skip to content

Commit

Permalink
treewide: remove unused 'rec'
Browse files Browse the repository at this point in the history
  • Loading branch information
minijackson committed Aug 25, 2023
1 parent 1d8555e commit dd78be7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
inherit system;
overlays = [overlay inputs.bash-lib.overlay];
};
in rec {
in {
packages = flake-utils.lib.flattenTree (pkgs.recurseIntoAttrs pkgs.epnix);

checks =
Expand Down
2 changes: 1 addition & 1 deletion lib/licenses.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Taken from:
# https://github.com/NixOS/nixpkgs/blob/55ad138e5cd97c6415abb45fae653fd413bef869/lib/licenses.nix
lib.mapAttrs (lname: lset: let
defaultLicense = rec {
defaultLicense = {
shortName = lname;
free = true; # Most of our licenses are Free, explicitly declare unfree additions as such!
deprecated = false;
Expand Down
2 changes: 1 addition & 1 deletion pkgs/epnix/support/seq/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
local_config_site ? {},
local_release ? {},
}:
mkEpicsPackage rec {
mkEpicsPackage {
pname = "seq";
version = "2.2.9";
varname = "SNCSEQ";
Expand Down

0 comments on commit dd78be7

Please sign in to comment.