packages feed

cabal2nix-2.16.0: test/golden-test-cases/unicode-show.nix.golden

{ mkDerivation, base, HUnit, lib, QuickCheck, test-framework
, test-framework-hunit, test-framework-quickcheck2
}:
mkDerivation {
  pname = "unicode-show";
  version = "0.1.0.2";
  sha256 = "deadbeef";
  libraryHaskellDepends = [ base ];
  testHaskellDepends = [
    base HUnit QuickCheck test-framework test-framework-hunit
    test-framework-quickcheck2
  ];
  homepage = "http://github.com/nushio3/unicode-show#readme";
  description = "print and show in unicode";
  license = lib.licenses.bsd3;
}