Skip to content
Snippets Groups Projects
Commit 2d6c6107 authored by Daniel Firth's avatar Daniel Firth
Browse files

base-orphans: init at 0.8.7

parent 4cdb24ea
No related merge requests found
......@@ -94,6 +94,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "autodocodec-servant-multipart" "0.0.0.0"
, callHackage "autodocodec-yaml" "0.2.0.2"
, callHackage "barbies" "2.0.3.1"
, callHackage "base-orphans" "0.8.7"
, callHackage "basement" "0.0.15"
, callHackage "base16-bytestring" "1.0.2.0"
, callHackage "base64" "0.4.2.4"
......
......@@ -75,6 +75,8 @@ self: with pkgs.haskell.lib; {
base-compat-batteries = self.callPackage (./pkgs/base-compat-batteries.nix) { };
base-orphans = self.callPackage (./pkgs/base-orphans.nix) { };
base16-bytestring = self.callPackage (./pkgs/base16-bytestring.nix) { };
base64 = self.callPackage (./pkgs/base64.nix) { };
......
{ mkDerivation
, base
, ghc-prim
, hspec
, hspec-discover
, lib
, QuickCheck
}:
mkDerivation {
pname = "base-orphans";
version = "0.8.7";
sha256 = "888fd67f0dbe932778f5b170922ce80d0dcab1680ee98f1d6fcc362f20d9e447";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base ghc-prim ];
testHaskellDepends = [ base hspec QuickCheck ];
testToolDepends = [ hspec-discover ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/haskell-compat/base-orphans#readme";
description = "Backwards-compatible orphan instances for base";
license = lib.licenses.mit;
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment