Skip to content

Commit

Permalink
Fixed #11 and bumped Nixpkgs
Browse files Browse the repository at this point in the history
  • Loading branch information
Thesola10 committed Sep 15, 2023
1 parent 24e1ac6 commit 3060933
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 12 deletions.
2 changes: 1 addition & 1 deletion builder/default.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ lib, python3Packages, fetchPypi, nix-index, nix, ... }:

let
nixie_ver = "2023.09-a0";
nixie_ver = "2023.09-a1";
pzp = python3Packages.buildPythonPackage rec {
pname = "pzp";
version = "0.0.22";
Expand Down
2 changes: 1 addition & 1 deletion builder/nixie/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
This is the Nixie tool for setting up Nixie in a Git repository.
'''

__version__ = '2023.09-a0'
__version__ = '2023.09-a1'
2 changes: 1 addition & 1 deletion builder/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ nixie = "nixie.cli:main"
"nixie.output" = ["*.in"]

[tool.bumpver]
current_version = "2023.09-a0"
current_version = "2023.09-a1"
version_pattern = "YYYY.0M-PYTAGNUM"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
Expand Down
30 changes: 24 additions & 6 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions static-bins/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,8 @@ let
];
systemsPkgs =
map (s:
let parsedSystem = pkgs.lib.systems.parse.mkSystemFromString s;
in import nixpkgs ({ localSystem = s; }
// (if parsedSystem.kernel.name == "darwin"
import nixpkgs ({ localSystem = s; }
// (if s == "x86_64-darwin"
then
{ overlays =
[ (import ./nixpkgs-darwin-static.nix) ];
Expand Down

0 comments on commit 3060933

Please sign in to comment.