mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
haskell-repr: added version 0.4.1.2
svn path=/nixpkgs/trunk/; revision=31070
This commit is contained in:
parent
6a9bbeac0f
commit
46084dbc3c
16
pkgs/development/libraries/haskell/repr/default.nix
Normal file
16
pkgs/development/libraries/haskell/repr/default.nix
Normal file
@ -0,0 +1,16 @@
|
||||
{ cabal, baseUnicodeSymbols, dstring, random, stringCombinators }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "repr";
|
||||
version = "0.4.1.2";
|
||||
sha256 = "09rv23p1hvvfw5wnhiawgrpqgqa4i0d00skyj9z1jj6bfxk5avjs";
|
||||
buildDepends = [
|
||||
baseUnicodeSymbols dstring random stringCombinators
|
||||
];
|
||||
meta = {
|
||||
homepage = "https://github.com/basvandijk/repr";
|
||||
description = "Render overloaded expressions to their textual representation";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
@ -1132,6 +1132,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
||||
|
||||
RepLib = callPackage ../development/libraries/haskell/RepLib {};
|
||||
|
||||
repr = callPackage ../development/libraries/haskell/repr {};
|
||||
|
||||
RSA = callPackage ../development/libraries/haskell/RSA {};
|
||||
|
||||
safe = callPackage ../development/libraries/haskell/safe {};
|
||||
|
Loading…
Reference in New Issue
Block a user