1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-05 08:31:03 +01:00
home-manager/tests/modules/programs/ahoviewer/plugins/a.nix
2025-09-23 12:26:21 -05:00

13 lines
173 B
Nix

{
stdenvNoCC,
}:
stdenvNoCC.mkDerivation {
pname = "plugin-a";
version = "1.0.0";
src = ./plugin-a;
buildPhase = ''
mkdir -p $out
cp $src/* $out/
'';
}