nixpkgs/pkgs/development/libraries/haskell/regex-posix/default.nix

13 lines
281 B
Nix
Raw Normal View History

{cabal, regexBase}:
cabal.mkDerivation (self : {
pname = "regex-posix";
version = "0.94.1";
sha256 = "63e76de0610d35f1b576ae65a25a38e04e758ed64b9b3512de95bdffd649485c";
extraBuildInputs = [regexBase];
meta = {
description = "Replaces/Ehances Text.Regex";
};
})