repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #329823 from ExpidusOS/fix/pkgsllvm/elfutils
[NixPkgs.git]
/
pkgs
/
by-name
/
he
/
hello-cpp
/
package.nix
blob
a8313a66cc770f26a298689e89bf34b5b3c7919e
1
{
2
cmake,
3
lib,
4
ninja,
5
stdenv,
6
}:
7
8
stdenv.mkDerivation {
9
name = "hello-cpp";
10
src = ./src;
11
nativeBuildInputs = [ cmake ninja ];
12
meta = {
13
description = "Basic sanity check that C++ and cmake infrastructure are working";
14
platforms = lib.platforms.all;
15
maintainers = stdenv.meta.maintainers or [];
16
mainProgram = "hello-cpp";
17
};
18
}