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
chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git]
/
pkgs
/
os-specific
/
darwin
/
apple-source-releases
/
libunwind
/
default.nix
blob
df3c5650452deff480ed54722b3849c3895fce94
1
{ lib, appleDerivation }:
2
3
appleDerivation {
4
dontBuild = true;
5
6
# install headers only
7
installPhase = ''
8
mkdir -p $out/lib
9
cp -R include $out/include
10
'';
11
12
meta = with lib; {
13
maintainers = with maintainers; [ copumpkin lnl7 ];
14
platforms = platforms.darwin;
15
license = licenses.apple-psl20;
16
};
17
}