summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/assert-failure/default.nix
blob: abc520e7b4ba5cc68e8d63e83e223556fbab59b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ cabal, prettyShow, text }:

cabal.mkDerivation (self: {
  pname = "assert-failure";
  version = "0.1";
  sha256 = "1xwd6rhka9gzmldkaw3d7262h51wxw9dwgip39q8pjkvvfs5kwkr";
  buildDepends = [ prettyShow text ];
  meta = {
    homepage = "https://github.com/Mikolaj/assert-failure";
    description = "Syntactic sugar improving 'assert' and 'error'";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})