mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 13:43:22 +00:00
17 lines
529 B
Nix
17 lines
529 B
Nix
{ cabal, c2hs, ncursesw, panelw, text, transformers }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "ncurses";
|
|
version = "0.2.6";
|
|
sha256 = "0mcgbq67f8hfdqmvm3p59949mbxcc2mgjw889zxvxx0174kn205q";
|
|
buildDepends = [ text transformers ];
|
|
buildTools = [ c2hs ];
|
|
extraLibraries = [ ncursesw panelw ];
|
|
meta = {
|
|
homepage = "https://john-millikin.com/software/haskell-ncurses/";
|
|
description = "Modernised bindings to GNU ncurses";
|
|
license = self.stdenv.lib.licenses.gpl3;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|