mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
16 lines
469 B
Nix
16 lines
469 B
Nix
{ cabal, ncurses }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "terminfo";
|
|
version = "0.3.2.6";
|
|
sha256 = "0ag81rwwwaanxdn9ccanvdi1qnh62vy8y2jbgp5bp95hhgqq887f";
|
|
extraLibraries = [ ncurses ];
|
|
meta = {
|
|
homepage = "http://code.haskell.org/terminfo";
|
|
description = "Haskell bindings to the terminfo library";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|