summaryrefslogtreecommitdiffstats
path: root/krebs/5pkgs/haskell/flameshot-once.nix
blob: 5b369362e1ca7b72b5f844ebc947aedf67af4008 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ mkDerivation, async, base, blessings, bytestring, dbus, fetchgit
, iso8601-time, process, random, stdenv, text, time, unagi-chan
, unix
}:
mkDerivation {
  pname = "flameshot-once";
  version = "1.2.0";
  src = fetchgit {
    url = "https://cgit.krebsco.de/flameshot-once";
    sha256 = "01c11dk8ss37awfn9xqsgx668dcrf4kvzfxlq7ycnqsnpbjjvm0a";
    rev = "cebaefa37095e74ad2253c4e2f9d9ab390f88737";
    fetchSubmodules = true;
  };
  isLibrary = false;
  isExecutable = true;
  executableHaskellDepends = [
    async base blessings bytestring dbus iso8601-time process random
    text time unagi-chan unix
  ];
  license = stdenv.lib.licenses.mit;
}