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 #268619 from tweag/lib-descriptions
[NixPkgs.git]
/
pkgs
/
development
/
ocaml-modules
/
csv
/
lwt.nix
blob
8e91decfd65f00e780466112506697376fc9eb8f
1
{ lib, buildDunePackage, csv, lwt }:
2
3
buildDunePackage {
4
pname = "csv-lwt";
5
inherit (csv) src version meta;
6
7
preConfigure = ''
8
substituteInPlace lwt/dune --replace '(libraries bytes' '(libraries '
9
'';
10
11
duneVersion = "3";
12
13
propagatedBuildInputs = [ csv lwt ];
14
15
doCheck = true;
16
}