xdg-desktop-portal-hyprland/flake.nix

48 lines
1.4 KiB
Nix
Raw Normal View History

2022-12-04 00:44:12 +01:00
{
description = "xdg-desktop-portal-hyprland";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
hyprland-protocols = {
url = "github:hyprwm/hyprland-protocols";
inputs.nixpkgs.follows = "nixpkgs";
};
};
2022-12-04 00:44:12 +01:00
outputs = {
self,
nixpkgs,
...
} @ inputs: let
2022-12-04 00:44:12 +01:00
inherit (nixpkgs) lib;
genSystems = lib.genAttrs [
"aarch64-linux"
"x86_64-linux"
];
pkgsFor = nixpkgs.legacyPackages;
mkDate = longDate: (lib.concatStringsSep "-" [
(builtins.substring 0 4 longDate)
(builtins.substring 4 2 longDate)
(builtins.substring 6 2 longDate)
]);
version = "0.pre" + "+date=" + (mkDate (self.lastModifiedDate or "19700101")) + "_" + (self.shortRev or "dirty");
2022-12-04 00:44:12 +01:00
in {
overlays.default = _: prev: rec {
2022-12-04 00:44:12 +01:00
xdg-desktop-portal-hyprland = prev.callPackage ./nix/default.nix {
2022-12-24 00:24:38 +01:00
stdenv = prev.gcc12Stdenv;
inherit (inputs.hyprland-protocols.packages.${prev.hostPlatform.system}) hyprland-protocols;
inherit hyprland-share-picker version;
2022-12-04 00:44:12 +01:00
};
hyprland-share-picker = prev.libsForQt5.callPackage ./nix/hyprland-share-picker.nix {inherit version;};
2022-12-04 00:44:12 +01:00
};
packages = genSystems (system:
(self.overlays.default null pkgsFor.${system})
// {default = self.packages.${system}.xdg-desktop-portal-hyprland;});
formatter = genSystems (system: pkgsFor.${system}.alejandra);
};
}