Skip to content

Commit

Permalink
Added forks for broken packages
Browse files Browse the repository at this point in the history
  • Loading branch information
mpscholten committed Mar 15, 2024
1 parent 1cd5170 commit d59d471
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 0 deletions.
41 changes: 41 additions & 0 deletions NixSupport/haskell-packages/minio-hs.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{ mkDerivation, aeson, base, base64-bytestring, binary, bytestring
, case-insensitive, conduit, conduit-extra, crypton-connection
, cryptonite, cryptonite-conduit, digest, directory, filepath
, http-client, http-client-tls, http-conduit, http-types, ini, lib
, memory, network-uri, QuickCheck, raw-strings-qq, relude
, resourcet, retry, tasty, tasty-hunit, tasty-quickcheck
, tasty-smallcheck, text, time, time-units, transformers, unliftio
, unliftio-core, unordered-containers, xml-conduit, fetchFromGitHub
}:
mkDerivation {
pname = "minio-hs";
version = "1.7.0";
src = fetchFromGitHub {
owner = "mpscholten";
repo = "minio-hs";
rev = "786cf1881f0b62b7539e63547e76afc3c1ade36a";
sha256 = "sha256-dK4nH6j16oFNB27tp1ExAWahhFUlKpzLpqTiHju8dl8=";
};
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson base base64-bytestring binary bytestring case-insensitive
conduit conduit-extra crypton-connection cryptonite
cryptonite-conduit digest directory filepath http-client
http-client-tls http-conduit http-types ini memory network-uri
relude resourcet retry text time time-units transformers unliftio
unliftio-core unordered-containers xml-conduit
];
testHaskellDepends = [
aeson base base64-bytestring binary bytestring case-insensitive
conduit conduit-extra crypton-connection cryptonite
cryptonite-conduit digest directory filepath http-client
http-client-tls http-conduit http-types ini memory network-uri
QuickCheck raw-strings-qq relude resourcet retry tasty tasty-hunit
tasty-quickcheck tasty-smallcheck text time time-units transformers
unliftio unliftio-core unordered-containers xml-conduit
];
homepage = "https://github.com/minio/minio-hs#readme";
description = "A MinIO Haskell Library for Amazon S3 compatible cloud storage";
license = lib.licenses.asl20;
}
22 changes: 22 additions & 0 deletions NixSupport/haskell-packages/smtp-mail.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{ mkDerivation, array, base, base16-bytestring, base64-bytestring
, bytestring, crypton-connection, cryptonite, filepath, lib, memory
, mime-mail, network, network-bsd, text, fetchFromGitHub
}:
mkDerivation {
pname = "smtp-mail";
version = "0.3.0.0";
src = fetchFromGitHub {
owner = "MasterWordServices";
repo = "smtp-mail";
rev = "4c724c80814ab1da7c37256a6c10e04c88b9af95";
sha256 = "sha256-gjg2k8UHBwumoH8OUsFZ+Xd5icotaVHRmlQt6Xc7Mf0=";
};
libraryHaskellDepends = [
array base base16-bytestring base64-bytestring bytestring
crypton-connection cryptonite filepath memory mime-mail network network-bsd
text
];
homepage = "http://github.com/jhickner/smtp-mail";
description = "Simple email sending via SMTP";
license = lib.licenses.bsd3;
}

0 comments on commit d59d471

Please sign in to comment.