mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-06 00:51:04 +01:00
13 lines
173 B
Nix
13 lines
173 B
Nix
{
|
|
stdenvNoCC,
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation {
|
|
pname = "plugin-b";
|
|
version = "1.0.0";
|
|
src = ./plugin-b;
|
|
buildPhase = ''
|
|
mkdir -p $out
|
|
cp $src/* $out/
|
|
'';
|
|
}
|