nixos/packages/concurrencpp.nix
2024-08-01 00:25:23 +08:00

7 lines
121 B
Nix

{ stdenv, cmake, src }: stdenv.mkDerivation
{
name = "concurrencpp";
inherit src;
nativeBuildInputs = [ cmake ];
}