mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
New Haskell library: haskell-safecopy
This commit is contained in:
parent
a24458c219
commit
8a3f6e8e76
2 changed files with 22 additions and 0 deletions
20
pkgs/development/libraries/haskell/safecopy/default.nix
Normal file
20
pkgs/development/libraries/haskell/safecopy/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ cabal, cereal, text }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "safecopy";
|
||||
version = "0.8.2";
|
||||
sha256 = "0l2kqymsxv244fahxcpxlrspk6xipz3br6j854ipbfh8b0bfvr4m";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
cereal text
|
||||
];
|
||||
meta = {
|
||||
homepage = "http://acid-state.seize.it/safecopy";
|
||||
description = "Binary serialization with version control.";
|
||||
license = self.stdenv.lib.licenses.publicDomain;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
maintainers = [
|
||||
];
|
||||
};
|
||||
})
|
|
@ -1599,6 +1599,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
|||
|
||||
safe = callPackage ../development/libraries/haskell/safe {};
|
||||
|
||||
safecopy = callPackage ../development/libraries/haskell/safecopy {};
|
||||
|
||||
SafeSemaphore = callPackage ../development/libraries/haskell/SafeSemaphore {};
|
||||
|
||||
scotty = callPackage ../development/libraries/haskell/scotty {};
|
||||
|
|
Loading…
Reference in a new issue