about summary refs log tree commit diff
path: root/pkgs/by-name/he/hello-cpp/package.nix
blob: a8313a66cc770f26a298689e89bf34b5b3c7919e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  cmake,
  lib,
  ninja,
  stdenv,
}:

stdenv.mkDerivation {
  name = "hello-cpp";
  src = ./src;
  nativeBuildInputs = [ cmake ninja ];
  meta = {
    description = "Basic sanity check that C++ and cmake infrastructure are working";
    platforms = lib.platforms.all;
    maintainers = stdenv.meta.maintainers or [];
    mainProgram = "hello-cpp";
  };
}