stockholm/krebs/5pkgs/haskell/flameshot-once.nix

21 lines
639 B
Nix
Raw Normal View History

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 = "03g6sxgp6hcmbww5lzbs5llssgii1w469i5pz14x94542l06cmkq";
rev = "5f0ba1cf326d215bd5c50ad74c634e92c785ae46";
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
}