Merge pull request #3483 from monocell/haskell-xorshift

new package: haskell xorshift
This commit is contained in:
Aycan iRiCAN 2014-08-07 18:49:48 +03:00
commit 16b3955b42
2 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,15 @@
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, random, time }:
cabal.mkDerivation (self: {
pname = "xorshift";
version = "2.0.1";
sha256 = "1pgkcnsgir8ci3hm3s5w3lk5dy7219242g9njx9cxb1m1cz5v5rf";
buildDepends = [ random time ];
meta = {
description = "Haskell implementation of the xorshift random generator";
license = self.stdenv.lib.licenses.lgpl2;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -2705,6 +2705,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
xmlTypes = callPackage ../development/libraries/haskell/xml-types {};
xorshift = callPackage ../development/libraries/haskell/xorshift {};
xournalParser = callPackage ../development/libraries/haskell/xournal-parser {};
xournalTypes = callPackage ../development/libraries/haskell/xournal-types {};