summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2019-02-07 22:09:51 +0100
committerlassulus <lassulus@lassul.us>2019-02-08 05:19:48 +0100
commit76fd127a7f1bedd6951322b6401076dd4ee48a78 (patch)
tree1949ea6bf88aa5504064f851b508be3c03c4b587
parent24d008d92d24633054e37dd69f983512bf49a69d (diff)
flameshot-once: 1.0.0 -> 1.0.1
-rw-r--r--krebs/5pkgs/haskell/flameshot-once.nix15
1 files changed, 8 insertions, 7 deletions
diff --git a/krebs/5pkgs/haskell/flameshot-once.nix b/krebs/5pkgs/haskell/flameshot-once.nix
index b90dd2cb..aa0d94d8 100644
--- a/krebs/5pkgs/haskell/flameshot-once.nix
+++ b/krebs/5pkgs/haskell/flameshot-once.nix
@@ -1,20 +1,21 @@
-{ mkDerivation, async, base, blessings, dbus, fetchgit
-, iso8601-time, process, stdenv, text, time, unagi-chan, unix
+{ mkDerivation, async, base, blessings, bytestring, dbus, fetchgit
+, iso8601-time, process, random, stdenv, text, time, unagi-chan
+, unix
}:
mkDerivation {
pname = "flameshot-once";
- version = "1.0.0";
+ version = "1.0.1";
src = fetchgit {
url = "https://cgit.krebsco.de/flameshot-once";
- sha256 = "0fjk5pgjy7r0xz4i38qb85x1z4jp8bas2mmgznp7glidz362w390";
- rev = "fb5636483871fbafe9b286b377c339c8ddf8b4f8";
+ sha256 = "01bsgadjk3y3lg19xcadlrqalr4cs028fsivgacqh31fqaq4v243";
+ rev = "03623ce6c011c1e85df7d91aed4458c098ff22ff";
fetchSubmodules = true;
};
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
- async base blessings dbus iso8601-time process text time unagi-chan
- unix
+ async base blessings bytestring dbus iso8601-time process random
+ text time unagi-chan unix
];
license = stdenv.lib.licenses.mit;
}