mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-03-12 13:28:54 +01:00
17 lines
367 B
Nix
17 lines
367 B
Nix
|
{
|
||
|
nixpkgs.overlays = [
|
||
|
(final: prev: {
|
||
|
hyprlang = prev.hyprlang.overrideAttrs (oldAttrs: rec {
|
||
|
version = "0.5.0";
|
||
|
|
||
|
src = prev.fetchFromGitHub {
|
||
|
owner = "hyprwm";
|
||
|
repo = "hyprlang";
|
||
|
rev = "v${version}";
|
||
|
hash = "sha256-bR4o3mynoTa1Wi4ZTjbnsZ6iqVcPGriXp56bZh5UFTk=";
|
||
|
};
|
||
|
});
|
||
|
})
|
||
|
];
|
||
|
}
|