Skip to content

Commit 2f545ee

Browse files
author
BirdeeHub
committed
ci(flake): flake
1 parent 973cc06 commit 2f545ee

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{ pkgs ? import <nixpkgs> {} }: (import ./flake.nix).outputs {
1+
{ pkgs ? import <nixpkgs> {}, ... }: (import ./flake.nix).outputs {
22
self = builtins.path { path = ./.; };
33
inherit (pkgs) system;
44
nixpkgs = pkgs;

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
then nixpkgs.appendOverlays [ overlay ] else import nixpkgs { inherit system; overlays = [ overlay ]; };
88
getpkgs = system: if builtins.all (v: nixpkgs ? "${v}") [ "path" "system" "appendOverlays" ]
99
then nixpkgs else import nixpkgs { inherit system; };
10-
APPNAME = "tomlua";
1110
l_pkg_enum = {
1211
lua5_1 = "lua51Packages";
1312
lua5_2 = "lua52Packages";
@@ -16,6 +15,7 @@
1615
luajit = "luajitPackages";
1716
lua = "luaPackages";
1817
};
18+
APPNAME = "tomlua";
1919
overlay = final: prev: let
2020
# lua5_1 = prev.lua5_1.override { packageOverrides };
2121
l_pkg_main = builtins.mapAttrs (n: _: (prev.lib.attrByPath [ n "override" ] null prev) {

0 commit comments

Comments
 (0)