nixos/packages/concurrencpp.nix

7 lines
121 B
Nix
Raw Normal View History

2024-01-23 13:02:19 +08:00
{ stdenv, cmake, src }: stdenv.mkDerivation
2023-09-10 21:15:13 +08:00
{
2024-01-23 13:02:19 +08:00
name = "concurrencpp";
inherit src;
2023-09-10 21:15:13 +08:00
nativeBuildInputs = [ cmake ];
}