Skip to content

Commit

Permalink
lix_git: init (#837)
Browse files Browse the repository at this point in the history
  • Loading branch information
dr460nf1r3 authored Aug 26, 2024
1 parent 9fbc509 commit e327b18
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 1 deletion.
4 changes: 3 additions & 1 deletion overlays/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ let
# Required for 32-bit packages
has32 = final.stdenv.hostPlatform.isLinux && final.stdenv.hostPlatform.isx86;

# apply Jovian overlay only on x86_64-linux
# Apply Jovian overlay only on x86_64-linux
jovian-chaotic =
if final.stdenv.hostPlatform.isLinux && final.stdenv.hostPlatform.isx86_64 then {
inherit (jovian.legacyPackages.x86_64-linux) linux_jovian mesa-radv-jupiter mesa-radeonsi-jupiter;
Expand Down Expand Up @@ -200,6 +200,8 @@ in
linuxPackages_cachyos-rc = cachyosPackages.cachyos-rc;
linux_cachyos-rc = cachyosPackages.cachyos-rc.kernel;

lix_git = callOverride ../pkgs/lix-git { };

luxtorpeda = final.callPackage ../pkgs/luxtorpeda {
luxtorpedaVersion = importJSON ../pkgs/luxtorpeda/version.json;
};
Expand Down
14 changes: 14 additions & 0 deletions pkgs/lix-git/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{ prev, gitOverride, ... }:

gitOverride {
nyxKey = "lix_git";
prev = prev.lix;

versionNyxPath = "pkgs/lix-git/version.json";
fetcher = "fetchFromGitHub";
fetcherData = {
owner = "lix-project";
repo = "lix";
};
ref = "main";
}
5 changes: 5 additions & 0 deletions pkgs/lix-git/version.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"version": "unstable-20240813193910-b016eb0",
"rev": "b016eb0895bb6714a4f6530d9a2bb6577ac6c3cf",
"hash": "sha256-kOpGI9WPmte1L4QWHviuXsr8jxmGn27zwi82jtzYObM="
}

0 comments on commit e327b18

Please sign in to comment.