2019-02-07 21:09:51 +00:00
|
|
|
{ mkDerivation, async, base, blessings, bytestring, dbus, fetchgit
|
2021-06-08 14:57:54 +00:00
|
|
|
, iso8601-time, lib, process, random, text, time, unagi-chan, unix
|
2019-02-07 18:06:14 +00:00
|
|
|
}:
|
|
|
|
mkDerivation {
|
|
|
|
pname = "flameshot-once";
|
2021-06-08 14:57:54 +00:00
|
|
|
version = "1.4.0";
|
2019-02-07 18:06:14 +00:00
|
|
|
src = fetchgit {
|
|
|
|
url = "https://cgit.krebsco.de/flameshot-once";
|
2021-06-08 14:57:54 +00:00
|
|
|
sha256 = "13szgsiwn29aixm5xvs1m7128y5km5xss0ry5ii5y068rc2vysw8";
|
|
|
|
rev = "4475893c2081b3d9db4b7a54d0ce38d0914a17bf";
|
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
|
|
|
];
|
2021-06-08 14:57:54 +00:00
|
|
|
license = lib.licenses.mit;
|
2019-02-07 18:06:14 +00:00
|
|
|
}
|