mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
haskell-Safe: add version 0.1
This commit is contained in:
parent
e82f5c750e
commit
5b4b656e51
13
pkgs/development/libraries/haskell/Safe/default.nix
Normal file
13
pkgs/development/libraries/haskell/Safe/default.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{ cabal }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "Safe";
|
||||
version = "0.1";
|
||||
sha256 = "0ybi5r4635yjx41ig54bm426fbdzrivc5kn8fwqxmzm62ai0v623";
|
||||
meta = {
|
||||
homepage = "http://www-users.cs.york.ac.uk/~ndm/projects/libraries.php";
|
||||
description = "Library for safe (pattern match free) functions";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
|
@ -1550,6 +1550,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
|||
|
||||
safe = callPackage ../development/libraries/haskell/safe {};
|
||||
|
||||
Safe = callPackage ../development/libraries/haskell/Safe {};
|
||||
|
||||
SafeSemaphore = callPackage ../development/libraries/haskell/SafeSemaphore {};
|
||||
|
||||
sendfile = callPackage ../development/libraries/haskell/sendfile {};
|
||||
|
|
Loading…
Reference in a new issue