hyprwayland-scanner/flake.nix

52 lines
1.6 KiB
Nix
Raw Normal View History

2024-04-20 12:40:18 +02:00
{
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];
});
2024-06-11 17:21:15 +02:00
pkgsCrossFor = eachSystem (system: crossSystem:
import nixpkgs {
localSystem = system;
crossSystem = crossSystem;
overlays = with self.overlays; [hyprwayland-scanner];
});
2024-04-20 12:40:18 +02:00
mkDate = longDate: (lib.concatStringsSep "-" [
(builtins.substring 0 4 longDate)
(builtins.substring 4 2 longDate)
(builtins.substring 6 2 longDate)
]);
in {
overlays = {
2024-04-20 13:26:34 +02:00
default = self.overlays.hyprwayland-scanner;
2024-04-20 12:40:18 +02:00
hyprwayland-scanner = final: prev: {
hyprwayland-scanner = final.callPackage ./nix/default.nix {
stdenv = final.gcc13Stdenv;
2024-04-20 14:34:19 +02:00
version = "0.1.0" + "+date=" + (mkDate (self.lastModifiedDate or "19700101")) + "_" + (self.shortRev or "dirty");
2024-04-20 12:40:18 +02:00
};
};
};
packages = eachSystem (system: {
default = self.packages.${system}.hyprwayland-scanner;
inherit (pkgsFor.${system}) hyprwayland-scanner;
2024-06-11 17:21:15 +02:00
hyprwayland-scanner-cross = (pkgsCrossFor.${system} "aarch64-linux").hyprwayland-scanner;
2024-04-20 12:40:18 +02:00
});
formatter = eachSystem (system: pkgsFor.${system}.alejandra);
};
}