brockman: 3.2.4 -> 3.4.0

This commit is contained in:
lassulus 2021-02-10 15:58:59 +01:00
parent f32fcc3e4a
commit ce0393f43a

View File

@ -1,26 +1,26 @@
{ mkDerivation, aeson, aeson-pretty, base, bytestring { mkDerivation, aeson, aeson-pretty, base, bytestring
, case-insensitive, conduit, containers, directory, feed, filepath , case-insensitive, conduit, containers, directory, feed, filepath
, hslogger, html-entity, http-client, irc-conduit, lens, lrucache , hashable, hslogger, html-entity, http-client, irc-conduit, lens
, network, optparse-applicative, random, safe, stdenv, text, time , lrucache, lrucaching, network, optparse-applicative, random, safe
, timerep, wreq , stdenv, text, time, timerep, wreq
, fetchFromGitHub , fetchFromGitHub
}: }:
mkDerivation rec { mkDerivation rec {
pname = "brockman"; pname = "brockman";
version = "3.2.4"; version = "3.4.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "kmein"; owner = "kmein";
repo = "brockman"; repo = "brockman";
rev = version; rev = version;
sha256 = "1jh2i3rxbw8x0p5xs9ph95ixpsa6h6qm0msjb9xqnw9j8by2fkk2"; sha256 = "02nval6a9xcddj6znzxvcb8g6klzjydj1lb4ych64i9mr4a8jvic";
}; };
isLibrary = false; isLibrary = false;
isExecutable = true; isExecutable = true;
executableHaskellDepends = [ executableHaskellDepends = [
aeson aeson-pretty base bytestring case-insensitive conduit aeson aeson-pretty base bytestring case-insensitive conduit
containers directory feed filepath hslogger html-entity http-client containers directory feed filepath hashable hslogger html-entity
irc-conduit lens lrucache network optparse-applicative random safe http-client irc-conduit lens lrucache lrucaching network
text time timerep wreq optparse-applicative random safe text time timerep wreq
]; ];
license = stdenv.lib.licenses.mit; license = stdenv.lib.licenses.mit;
} }