Sebastian Walz 860d31cee1
Tohu vaBohu
2023-04-21 00:22:52 +02:00

26 lines
779 B
Nix

{
description = "Unpatched wofi";
inputs
= {
libcore.url = "github:sivizius/nixfiles/development?dir=libs/core";
nixpkgs.url = "github:sivizius/nixpkgs/master";
};
outputs
= { self, libcore, nixpkgs, ... }:
{
packages
= (libcore.lib { inherit self; debug.logLevel = "info"; }).target.System.mapStdenv
(
system:
nixpkgs.legacyPackages."${system}".wofi.overrideAttrs
(
oldAttrs:
{
# Remove the do_not_follow_symlinks-patch
patches = [];
}
)
);
};
}