mirror of
https://github.com/hyprwm/hyprwayland-scanner.git
synced 2024-11-02 18:05:58 +01:00
51 lines
1.6 KiB
Nix
51 lines
1.6 KiB
Nix
{
|
|
description = "A Hyprland version of wayland-scanner in and for C++";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
systems.url = "github:nix-systems/default-linux";
|
|
};
|
|
|
|
outputs = {
|
|
self,
|
|
nixpkgs,
|
|
systems,
|
|
}: let
|
|
inherit (nixpkgs) lib;
|
|
eachSystem = lib.genAttrs (import systems);
|
|
pkgsFor = eachSystem (system:
|
|
import nixpkgs {
|
|
localSystem.system = system;
|
|
overlays = with self.overlays; [hyprwayland-scanner];
|
|
});
|
|
pkgsCrossFor = eachSystem (system: crossSystem:
|
|
import nixpkgs {
|
|
localSystem = system;
|
|
crossSystem = crossSystem;
|
|
overlays = with self.overlays; [hyprwayland-scanner];
|
|
});
|
|
mkDate = longDate: (lib.concatStringsSep "-" [
|
|
(builtins.substring 0 4 longDate)
|
|
(builtins.substring 4 2 longDate)
|
|
(builtins.substring 6 2 longDate)
|
|
]);
|
|
in {
|
|
overlays = {
|
|
default = self.overlays.hyprwayland-scanner;
|
|
hyprwayland-scanner = final: prev: {
|
|
hyprwayland-scanner = final.callPackage ./nix/default.nix {
|
|
stdenv = final.gcc13Stdenv;
|
|
version = "0.1.0" + "+date=" + (mkDate (self.lastModifiedDate or "19700101")) + "_" + (self.shortRev or "dirty");
|
|
};
|
|
};
|
|
};
|
|
|
|
packages = eachSystem (system: {
|
|
default = self.packages.${system}.hyprwayland-scanner;
|
|
inherit (pkgsFor.${system}) hyprwayland-scanner;
|
|
hyprwayland-scanner-cross = (pkgsCrossFor.${system} "aarch64-linux").hyprwayland-scanner;
|
|
});
|
|
|
|
formatter = eachSystem (system: pkgsFor.${system}.alejandra);
|
|
};
|
|
}
|