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

dlist: init at 1.0

parent bb32f6cb
No related merge requests found
...@@ -196,6 +196,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -196,6 +196,7 @@ in [ callHackage "Cabal" "3.8.1.0"
(Some "dirforest") (Some "dirforest")
, callHackage "distribution-nixpkgs" "1.7.0" , callHackage "distribution-nixpkgs" "1.7.0"
, callHackage "distributive" "0.6.2.1" , callHackage "distributive" "0.6.2.1"
, callHackage "dlist" "1.0"
, callCabal2nix , callCabal2nix
"doctest" "doctest"
"https://github.com/sol/doctest" "https://github.com/sol/doctest"
......
...@@ -227,6 +227,8 @@ self: with pkgs.haskell.lib; { ...@@ -227,6 +227,8 @@ self: with pkgs.haskell.lib; {
distributive = self.callPackage (./pkgs/distributive.nix) { }; distributive = self.callPackage (./pkgs/distributive.nix) { };
dlist = self.callPackage (./pkgs/dlist.nix) { };
doctemplates = self.callPackage (./pkgs/doctemplates.nix) { }; doctemplates = self.callPackage (./pkgs/doctemplates.nix) { };
doctest = self.callPackage (./pkgs/doctest.nix) { }; doctest = self.callPackage (./pkgs/doctest.nix) { };
......
{ mkDerivation, base, deepseq, lib, QuickCheck }:
mkDerivation {
pname = "dlist";
version = "1.0";
sha256 = "173d637328bb173fcc365f30d29ff4a94292a1e0e5558aeb3dfc11de81510115";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base deepseq ];
testHaskellDepends = [ base QuickCheck ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/spl/dlist";
description = "Difference lists";
license = lib.licenses.bsd3;
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