diff options
author | tv <tv@krebsco.de> | 2023-02-03 13:15:23 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2023-02-03 13:15:23 +0100 |
commit | 880eb5310d3ddf8da4907aadb7ecdf45f2f892d3 (patch) | |
tree | 9af622a6a6c324452592c2672ff145b77bede3c0 /tv/5pkgs/haskell | |
parent | 831690c3f89bd32fb66667a5a844f87a60164174 (diff) |
flameshot-once: move to tv
Diffstat (limited to 'tv/5pkgs/haskell')
-rw-r--r-- | tv/5pkgs/haskell/flameshot-once.nix | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tv/5pkgs/haskell/flameshot-once.nix b/tv/5pkgs/haskell/flameshot-once.nix new file mode 100644 index 0000000..c8007ce --- /dev/null +++ b/tv/5pkgs/haskell/flameshot-once.nix @@ -0,0 +1,20 @@ +{ mkDerivation, async, base, blessings, bytestring, dbus, fetchgit +, iso8601-time, lib, process, random, text, time, unagi-chan, unix +}: +mkDerivation { + pname = "flameshot-once"; + version = "1.4.0"; + src = fetchgit { + url = "https://cgit.krebsco.de/flameshot-once"; + sha256 = "13szgsiwn29aixm5xvs1m7128y5km5xss0ry5ii5y068rc2vysw8"; + rev = "4475893c2081b3d9db4b7a54d0ce38d0914a17bf"; + fetchSubmodules = true; + }; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + async base blessings bytestring dbus iso8601-time process random + text time unagi-chan unix + ]; + license = lib.licenses.mit; +} |