mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
Dropped the obsolete haskell-CS173Tourney package (which was based on WebServer).
svn path=/nixpkgs/trunk/; revision=28628
This commit is contained in:
parent
960e8c11e5
commit
f01d5ea8f6
@ -1,18 +0,0 @@
|
||||
{cabal, fetchgit, json, time, hslogger, Crypto, base64String, CouchDB, WebServer, WebServerExtras}:
|
||||
|
||||
cabal.mkDerivation (self : {
|
||||
pname = "CS173Tourney";
|
||||
version = "2.5.2";
|
||||
|
||||
src = fetchgit {
|
||||
url = git://github.com/arjunguha/173tourney.git;
|
||||
rev = "dce044761b008cb685a675a1f35be6aff66fed21" ;
|
||||
md5 = "21e5e5c2e184b4b70696d4d6c60e51d3";
|
||||
};
|
||||
patches = [./sendmail.patch];
|
||||
propagatedBuildInputs = [json time hslogger Crypto base64String CouchDB WebServer WebServerExtras];
|
||||
meta = {
|
||||
description = "";
|
||||
};
|
||||
})
|
||||
|
@ -1,20 +0,0 @@
|
||||
diff -rc 173tourney/server-src/Mail.hs 173tourney2/server-src/Mail.hs
|
||||
*** 173tourney/server-src/Mail.hs 2009-11-05 13:00:58.971443217 +0100
|
||||
--- 173tourney2/server-src/Mail.hs 2009-11-24 10:38:38.325669644 +0100
|
||||
***************
|
||||
*** 17,23 ****
|
||||
-> IO Bool
|
||||
mailFrom fromAddr toAddrs subject body = do
|
||||
(stdin,stdout,stderr,process) <-
|
||||
! runInteractiveCommand "/usr/sbin/sendmail -t"
|
||||
let sendMail = do
|
||||
hSetBinaryMode stdin False
|
||||
hPutStrLn stdin $ "To: " ++ (concat $ intersperse ", " toAddrs)
|
||||
--- 17,23 ----
|
||||
-> IO Bool
|
||||
mailFrom fromAddr toAddrs subject body = do
|
||||
(stdin,stdout,stderr,process) <-
|
||||
! runInteractiveCommand "sendmail -t"
|
||||
let sendMail = do
|
||||
hSetBinaryMode stdin False
|
||||
hPutStrLn stdin $ "To: " ++ (concat $ intersperse ", " toAddrs)
|
@ -483,11 +483,6 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
||||
|
||||
cryptohash = callPackage ../development/libraries/haskell/cryptohash {};
|
||||
|
||||
CS173Tourney = callPackage ../development/libraries/haskell/CS173Tourney {
|
||||
inherit (pkgs) fetchgit;
|
||||
json = self.json_0_3_6;
|
||||
};
|
||||
|
||||
csv = callPackage ../development/libraries/haskell/csv {};
|
||||
|
||||
cssText = callPackage ../development/libraries/haskell/css-text {};
|
||||
|
Loading…
Reference in New Issue
Block a user