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/ipprint/default.nix
2014-04-15 10:43:38 +02:00

14 lines
386 B
Nix

{ cabal, Extra, haskellSrc }:
cabal.mkDerivation (self: {
pname = "ipprint";
version = "0.5";
sha256 = "0h75k21blbnzvp5l20qsima557dx6zfrww79y7qsqf04pbd81j7s";
buildDepends = [ Extra haskellSrc ];
meta = {
description = "Tiny helper for pretty-printing values in ghci console";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})