1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-05 20:12:52 +00:00
nixpkgs/pkgs/development/libraries/haskell/editline/0.2.1.0.nix

15 lines
413 B
Nix
Raw Normal View History

{ cabal, libedit }:
cabal.mkDerivation (self: {
pname = "editline";
version = "0.2.1.0";
sha256 = "1qa65iqr5k3ajq1glf5y84lld132i2i3l0zmsw8xqkq7hrgqwqc3";
extraLibraries = [ libedit ];
meta = {
homepage = "http://code.haskell.org/editline";
description = "Bindings to the editline library (libedit)";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})