2019-02-07 21:09:51 +00:00
|
|
|
{ mkDerivation, async, base, blessings, bytestring, dbus, fetchgit
|
|
|
|
, iso8601-time, process, random, stdenv, text, time, unagi-chan
|
|
|
|
, unix
|
2019-02-07 18:06:14 +00:00
|
|
|
}:
|
|
|
|
mkDerivation {
|
|
|
|
pname = "flameshot-once";
|
2019-02-09 01:33:58 +00:00
|
|
|
version = "1.1.0";
|
2019-02-07 18:06:14 +00:00
|
|
|
src = fetchgit {
|
|
|
|
url = "https://cgit.krebsco.de/flameshot-once";
|
2019-02-09 01:33:58 +00:00
|
|
|
sha256 = "158ha1yyj3p3mdjjga62j91ml83nhrsg34xbg3dir5cb399j8pxx";
|
|
|
|
rev = "9d688b6ffad14912bd1afe42555747cb3d213d95";
|
2019-02-07 18:06:14 +00:00
|
|
|
fetchSubmodules = true;
|
|
|
|
};
|
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
|
|
|
executableHaskellDepends = [
|
2019-02-07 21:09:51 +00:00
|
|
|
async base blessings bytestring dbus iso8601-time process random
|
|
|
|
text time unagi-chan unix
|
2019-02-07 18:06:14 +00:00
|
|
|
];
|
|
|
|
license = stdenv.lib.licenses.mit;
|
|
|
|
}
|