Compare commits

...

3 commits

Author SHA1 Message Date
78ad886e03
try hyprland dev again 2024-12-17 13:41:08 -06:00
f01c4223b4
use nixpkgs nph 2024-12-13 09:44:19 -06:00
85af3854a3
upgrade nimble 2024-12-13 09:43:53 -06:00
3 changed files with 4 additions and 4 deletions

View file

@ -49,7 +49,7 @@
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
hyprland.url = "git+https://github.com/hyprwm/Hyprland/?submodules=1&ref=refs/tags/v0.45.2"; hyprland.url = "git+https://github.com/hyprwm/Hyprland/?submodules=1";
hyprland-contrib.url = "github:hyprwm/contrib"; hyprland-contrib.url = "github:hyprwm/contrib";
f1multiviewer = { f1multiviewer = {

View file

@ -14,9 +14,9 @@ in
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
nim nim
nimlangserver nimlangserver
nph
(flake.pkgs "self").nimble (flake.pkgs "self").nimble
(flake.pkgs "self").nph
]; ];
}; };
} }

View file

@ -10,12 +10,12 @@
}: }:
buildNimPackage (finalAttrs: { buildNimPackage (finalAttrs: {
pname = "nimble"; pname = "nimble";
version = "0.16.3"; version = "0.16.4";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "nim-lang"; owner = "nim-lang";
repo = "nimble"; repo = "nimble";
rev = "v${finalAttrs.version}"; rev = "v${finalAttrs.version}";
hash = "sha256-1tO/6sKPjmu9B6/cF00DeY/mnUHi2Y+hTEZ3WCqKoGw="; hash = "sha256-ASodRov4rO/IhjQRRdqVnLWMG1voXWM9F6R6VJd9qkM=";
fetchSubmodules = true; fetchSubmodules = true;
}; };
nativeBuildInputs = [ makeWrapper ]; nativeBuildInputs = [ makeWrapper ];