1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-05 12:02:47 +00:00
nixpkgs/pkgs/development/libraries/haskell/ncurses/default.nix

18 lines
584 B
Nix
Raw Normal View History

{ cabal, c2hs, ncurses, text, transformers }:
2013-08-21 22:39:07 +01:00
cabal.mkDerivation (self: {
pname = "ncurses";
version = "0.2.7";
sha256 = "026p6b2apgi9r65py45h3rl57xgwzyamq511a0rsb7myzagw22vz";
2013-08-21 22:39:07 +01:00
buildDepends = [ text transformers ];
buildTools = [ c2hs ];
extraLibraries = [ ncurses ];
2013-09-21 09:23:44 +01:00
patchPhase = "find . -type f -exec sed -i -e 's|ncursesw/||' {} \\;";
2013-08-21 22:39:07 +01:00
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;
};
})