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
biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git]
/
pkgs
/
development
/
ocaml-modules
/
cstruct
/
unix.nix
blob
40467a77a57fe0bc9082f8036ac8bf2601b5f162
1
{ lib, buildDunePackage, cstruct }:
2
3
if lib.versionOlder (cstruct.version or "1") "3"
4
then cstruct
5
else
6
7
buildDunePackage {
8
pname = "cstruct-unix";
9
inherit (cstruct) version src meta;
10
11
minimalOCamlVersion = "4.08";
12
duneVersion = "3";
13
14
propagatedBuildInputs = [ cstruct ];
15
}