flameshot-once: 1.0.0 -> 1.0.1

This commit is contained in:
tv 2019-02-07 22:09:51 +01:00 committed by lassulus
parent 24d008d92d
commit 76fd127a7f

View File

@ -1,20 +1,21 @@
{ mkDerivation, async, base, blessings, dbus, fetchgit { mkDerivation, async, base, blessings, bytestring, dbus, fetchgit
, iso8601-time, process, stdenv, text, time, unagi-chan, unix , iso8601-time, process, random, stdenv, text, time, unagi-chan
, unix
}: }:
mkDerivation { mkDerivation {
pname = "flameshot-once"; pname = "flameshot-once";
version = "1.0.0"; version = "1.0.1";
src = fetchgit { src = fetchgit {
url = "https://cgit.krebsco.de/flameshot-once"; url = "https://cgit.krebsco.de/flameshot-once";
sha256 = "0fjk5pgjy7r0xz4i38qb85x1z4jp8bas2mmgznp7glidz362w390"; sha256 = "01bsgadjk3y3lg19xcadlrqalr4cs028fsivgacqh31fqaq4v243";
rev = "fb5636483871fbafe9b286b377c339c8ddf8b4f8"; rev = "03623ce6c011c1e85df7d91aed4458c098ff22ff";
fetchSubmodules = true; fetchSubmodules = true;
}; };
isLibrary = false; isLibrary = false;
isExecutable = true; isExecutable = true;
executableHaskellDepends = [ executableHaskellDepends = [
async base blessings dbus iso8601-time process text time unagi-chan async base blessings bytestring dbus iso8601-time process random
unix text time unagi-chan unix
]; ];
license = stdenv.lib.licenses.mit; license = stdenv.lib.licenses.mit;
} }