mirror of
https://github.com/foo-dogsquared/nix-module-wrapper-manager-fds.git
synced 2025-01-31 04:58:17 +00:00
26 lines
637 B
Nix
26 lines
637 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
basePackages = pkgs.fastfetch;
|
||
|
|
||
|
wrappers.fastfetch-guix = {
|
||
|
arg0 = lib.getExe' pkgs.fastfetch "fastfetch";
|
||
|
appendArgs = [
|
||
|
"--logo"
|
||
|
"Guix"
|
||
|
];
|
||
|
env.NO_COLOR.value = "1";
|
||
|
xdg.desktopEntry.enable = true;
|
||
|
};
|
||
|
|
||
|
build.extraPassthru.tests = {
|
||
|
singleBasePackage =
|
||
|
let
|
||
|
wrapper = config.build.toplevel;
|
||
|
in
|
||
|
pkgs.runCommand "wrapper-manager-fastfetch-actually-built" { } ''
|
||
|
[ -e "${wrapper}/share/applications/fastfetch-guix.desktop" ] && [ -x "${wrapper}/bin/${config.wrappers.fastfetch-guix.executableName}" ] && touch $out
|
||
|
'';
|
||
|
};
|
||
|
}
|