blob: e6a43d67ad5f2c3d514f30d52d92ab31e5ff44ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{ mkDerivation, base, fetchgit, lib, mono-traversable, text
, wcwidth
}:
mkDerivation {
pname = "text-wcwidth";
version = "1.0.0";
src = fetchgit {
url = "https://cgit.krebsco.de/text-wcwidth";
sha256 = "1x51za2vpxgdz05arks3a98v9mz12s64rcncgg34fmir42f27li1";
rev = "d70945bdfcf1bebf3dadb6b6c8ac7c75b4d3e9d0";
fetchSubmodules = true;
};
libraryHaskellDepends = [ base mono-traversable text wcwidth ];
license = lib.licenses.mit;
}
|