mirror of
https://github.com/EdenQwQ/nixos.git
synced 2026-02-22 21:05:50 +08:00
15 lines
161 B
Nix
15 lines
161 B
Nix
{
|
|
stdenv,
|
|
}:
|
|
stdenv.mkDerivation {
|
|
pname = "";
|
|
version = "";
|
|
|
|
src = ./.;
|
|
|
|
meta = {
|
|
description = "";
|
|
homepage = "";
|
|
license = null;
|
|
};
|
|
}
|