mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 12:53:59 +03:00
haskell-time-compat: add version 0.1.0.1
This commit is contained in:
parent
389df7d0c3
commit
440e52ff4b
14
pkgs/development/libraries/haskell/time-compat/default.nix
Normal file
14
pkgs/development/libraries/haskell/time-compat/default.nix
Normal file
@ -0,0 +1,14 @@
|
||||
{ cabal, time }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "time-compat";
|
||||
version = "0.1.0.1";
|
||||
sha256 = "1fh5ylxv9cmgirakimizfdili3xf3ggqhhz5hz3v9i13mh4bgzvd";
|
||||
buildDepends = [ time ];
|
||||
meta = {
|
||||
homepage = "http://hub.darcs.net/dag/time-compat";
|
||||
description = "Compatibility with old-time for the time package";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
@ -1637,6 +1637,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
||||
# pass it explicitly in rare circumstances.
|
||||
time = null;
|
||||
|
||||
timeCompat = callPackage ../development/libraries/haskell/time-compat {};
|
||||
|
||||
tls = callPackage ../development/libraries/haskell/tls {};
|
||||
|
||||
tlsExtra = callPackage ../development/libraries/haskell/tls-extra {};
|
||||
|
Loading…
Reference in New Issue
Block a user