summaryrefslogtreecommitdiffstats
path: root/krebs/5pkgs/haskell/flameshot-once.nix
blob: aa0d94d8ffbddcd9792bc24aa9f10ef389938e9e (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.0.1";
  src = fetchgit {
    url = "https://cgit.krebsco.de/flameshot-once";
    sha256 = "01bsgadjk3y3lg19xcadlrqalr4cs028fsivgacqh31fqaq4v243";
    rev = "03623ce6c011c1e85df7d91aed4458c098ff22ff";
    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;
}