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
presenterm: 0.9.0 -> 0.10.0 (#378946)
[NixPkgs.git]
/
pkgs
/
by-name
/
li
/
libdwarf
/
common.nix
blob
7206140b9db2ab56a73a585ac470b1ff94a43720
1
{
2
lib,
3
stdenv,
4
fetchurl,
5
buildInputs,
6
hash,
7
version,
8
url,
9
knownVulnerabilities,
10
}:
11
12
stdenv.mkDerivation rec {
13
pname = "libdwarf";
14
inherit version;
15
16
src = fetchurl {
17
inherit url hash;
18
};
19
20
configureFlags = [
21
"--enable-shared"
22
"--disable-nonshared"
23
];
24
25
inherit buildInputs;
26
27
outputs = [
28
"bin"
29
"lib"
30
"dev"
31
"out"
32
];
33
34
meta = {
35
homepage = "https://github.com/davea42/libdwarf-code";
36
platforms = lib.platforms.unix;
37
license = lib.licenses.lgpl21Plus;
38
maintainers = [ lib.maintainers.atry ];
39
inherit knownVulnerabilities;
40
};
41
}