mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-05 08:31:03 +01:00
13 lines
173 B
Nix
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/
|
|
'';
|
|
}
|