haskell-unix-time: add version 0.1.0
This commit is contained in:
parent
801dee4a36
commit
b454e2e43e
15
pkgs/development/libraries/haskell/unix-time/default.nix
Normal file
15
pkgs/development/libraries/haskell/unix-time/default.nix
Normal file
@ -0,0 +1,15 @@
|
||||
{ cabal }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "unix-time";
|
||||
version = "0.1.0";
|
||||
sha256 = "063mssiq57g4bsalp653fa4yj9wmaynvg0x7vk67gds2l2zpd2gy";
|
||||
patchPhase = ''
|
||||
sed -i Setup.hs -e 's|main = defaultMain|main = defaultMainWithHooks autoconfUserHooks|'
|
||||
'';
|
||||
meta = {
|
||||
description = "Unix time parser/formatter and utilities";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
@ -1516,6 +1516,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
||||
|
||||
unixCompat = callPackage ../development/libraries/haskell/unix-compat {};
|
||||
|
||||
unixTime = callPackage ../development/libraries/haskell/unix-time {};
|
||||
|
||||
unlambda = callPackage ../development/libraries/haskell/unlambda {};
|
||||
|
||||
unorderedContainers = callPackage ../development/libraries/haskell/unordered-containers {};
|
||||
|
Loading…
Reference in New Issue
Block a user