mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-22 19:26:00 +01:00
Nix: move dependency overrides inside wlroots-hyprland call
This fixes overlays failing to build. Fixes #1704
This commit is contained in:
parent
5184b542b1
commit
7bae0823c8
1 changed files with 22 additions and 29 deletions
35
flake.nix
35
flake.nix
|
@ -32,11 +32,20 @@
|
||||||
"x86_64-linux"
|
"x86_64-linux"
|
||||||
];
|
];
|
||||||
|
|
||||||
pkgsFor = genSystems (system:
|
pkgsFor = nixpkgs.legacyPackages;
|
||||||
import nixpkgs {
|
|
||||||
inherit system;
|
props = builtins.fromJSON (builtins.readFile ./props.json);
|
||||||
overlays = [
|
|
||||||
(_: prev: {
|
mkDate = longDate: (lib.concatStringsSep "-" [
|
||||||
|
(builtins.substring 0 4 longDate)
|
||||||
|
(builtins.substring 4 2 longDate)
|
||||||
|
(builtins.substring 6 2 longDate)
|
||||||
|
]);
|
||||||
|
in {
|
||||||
|
overlays.default = _: prev: rec {
|
||||||
|
wlroots-hyprland = prev.callPackage ./nix/wlroots.nix {
|
||||||
|
version = mkDate (inputs.wlroots.lastModifiedDate or "19700101") + "_" + (inputs.wlroots.shortRev or "dirty");
|
||||||
|
src = inputs.wlroots;
|
||||||
libdisplay-info = prev.libdisplay-info.overrideAttrs (old: {
|
libdisplay-info = prev.libdisplay-info.overrideAttrs (old: {
|
||||||
version = "0.1.1+date=2023-03-02";
|
version = "0.1.1+date=2023-03-02";
|
||||||
src = prev.fetchFromGitLab {
|
src = prev.fetchFromGitLab {
|
||||||
|
@ -58,22 +67,6 @@
|
||||||
sha256 = "sha256-DjwlS8rXE7srs7A8+tHqXyUsFGtucYSeq6X0T/pVOc8=";
|
sha256 = "sha256-DjwlS8rXE7srs7A8+tHqXyUsFGtucYSeq6X0T/pVOc8=";
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
})
|
|
||||||
];
|
|
||||||
});
|
|
||||||
|
|
||||||
props = builtins.fromJSON (builtins.readFile ./props.json);
|
|
||||||
|
|
||||||
mkDate = longDate: (lib.concatStringsSep "-" [
|
|
||||||
(builtins.substring 0 4 longDate)
|
|
||||||
(builtins.substring 4 2 longDate)
|
|
||||||
(builtins.substring 6 2 longDate)
|
|
||||||
]);
|
|
||||||
in {
|
|
||||||
overlays.default = _: prev: rec {
|
|
||||||
wlroots-hyprland = prev.callPackage ./nix/wlroots.nix {
|
|
||||||
version = mkDate (inputs.wlroots.lastModifiedDate or "19700101") + "_" + (inputs.wlroots.shortRev or "dirty");
|
|
||||||
src = inputs.wlroots;
|
|
||||||
};
|
};
|
||||||
hyprland = prev.callPackage ./nix/default.nix {
|
hyprland = prev.callPackage ./nix/default.nix {
|
||||||
stdenv = prev.gcc12Stdenv;
|
stdenv = prev.gcc12Stdenv;
|
||||||
|
|
Loading…
Reference in a new issue