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

22 lines
650 B
Nix
Raw Normal View History

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-04-23 11:15:57 +00:00
version = "1.2.0";
2019-02-07 18:06:14 +00:00
src = fetchgit {
url = "https://cgit.krebsco.de/flameshot-once";
2019-04-23 11:15:57 +00:00
sha256 = "01c11dk8ss37awfn9xqsgx668dcrf4kvzfxlq7ycnqsnpbjjvm0a";
rev = "cebaefa37095e74ad2253c4e2f9d9ab390f88737";
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;
}