Skip to content
Snippets Groups Projects
Commit ee72fbb5 authored by Jean-Paul Calderone's avatar Jean-Paul Calderone
Browse files

cabal2nix . > paymentserver.nix

parent 5d92a70e
No related branches found
No related tags found
1 merge request!22Ristretto-flavored PrivacyPass
{ mkDerivation, aeson, base, containers, cryptonite, data-default
, optparse-applicative, ristretto, servant, servant-server, stdenv
, stripe-core, text, wai, wai-extra, warp
}:
mkDerivation {
pname = "PaymentServer";
version = "0.1.0.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson base containers cryptonite data-default optparse-applicative
servant servant-server stripe-core text wai wai-extra warp
];
libraryPkgconfigDepends = [ ristretto ];
executableHaskellDepends = [ base text ];
homepage = "https://github.com/privatestorageio/PaymentServer#readme";
description = "Coordinate entities for the purchase of PrivateStorage.io vouchers.";
license = stdenv.lib.licenses.asl20;
}
......@@ -2,5 +2,6 @@
pkgs.mkShell {
buildInputs = [
pkgs.stack
pkgs.cabal2nix
];
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment