1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Added a derivation for Goerzen's ftphs.

This commit is contained in:
vi 2014-04-03 13:39:52 +08:00
parent 3830fa8195
commit 5150da8a5c
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,18 @@
{ cabal, hslogger, MissingH, mtl, network, parsec, regexCompat }:
cabal.mkDerivation (self: {
pname = "ftphs";
version = "1.0.9.1";
sha256 = "1whvawaifhi5xgmiagdayjf7m6p6vs71mvc4a4csd4vzzjr0a2yf";
isLibrary = true;
isExecutable = true;
buildDepends = [
hslogger MissingH mtl network parsec regexCompat
];
meta = {
homepage = "http://software.complete.org/ftphs";
description = "FTP Client and Server Library";
license = "LGPL";
platforms = self.ghc.meta.platforms;
};
})

View file

@ -1083,6 +1083,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
fileLocation = callPackage ../development/libraries/haskell/file-location {};
ftphs = callPackage ../development/libraries/haskell/ftphs {};
extensibleEffects = callPackage ../development/libraries/haskell/extensible-effects {};
extensibleExceptions_0_1_1_0 = callPackage ../development/libraries/haskell/extensible-exceptions/0.1.1.0.nix {};