1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/haskell/editline/0.2.1.1.nix

17 lines
488 B
Nix

# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, libedit }:
cabal.mkDerivation (self: {
pname = "editline";
version = "0.2.1.1";
sha256 = "101zhzja14n8bhbrly7w2aywx3sxyzgyjdrmgpg4gn4alf4lzdlz";
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;
};
})