Merge branch 'haskell-ftphs' of git://github.com/fmap/nixpkgs
Added a derivation for Goerzen's `ftphs`
This commit is contained in:
commit
9a396b3840
18
pkgs/development/libraries/haskell/ftphs/default.nix
Normal file
18
pkgs/development/libraries/haskell/ftphs/default.nix
Normal 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;
|
||||
};
|
||||
})
|
@ -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 {};
|
||||
|
Loading…
Reference in New Issue
Block a user