diff options
author | tv <tv@krebsco.de> | 2023-01-25 19:19:04 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2023-01-25 19:19:04 +0100 |
commit | 7b343a9475452306431dcd953eeb4aa9e305028a (patch) | |
tree | e689ab8c8b660b3dcb9550c135bf87c62677351d /tv/5pkgs/override/flameshot/default.nix | |
parent | f2fc9da24d457a476ffb5daae5e470710a7eebc0 (diff) |
flameshot: move override to tv
Diffstat (limited to 'tv/5pkgs/override/flameshot/default.nix')
-rw-r--r-- | tv/5pkgs/override/flameshot/default.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tv/5pkgs/override/flameshot/default.nix b/tv/5pkgs/override/flameshot/default.nix new file mode 100644 index 0000000..2f7c523 --- /dev/null +++ b/tv/5pkgs/override/flameshot/default.nix @@ -0,0 +1,15 @@ +self: super: + +super.flameshot.overrideAttrs (old: rec { + name = "flameshot-${version}"; + version = "0.10.2"; + src = self.fetchFromGitHub { + owner = "flameshot-org"; + repo = "flameshot"; + rev = "v${version}"; + sha256 = "sha256-rZUiaS32C77tFJmEkw/9MGbVTVscb6LOCyWaWO5FyR4="; + }; + patches = old.patches or [] ++ [ + ./flameshot/flameshot_imgur_0.10.2.patch + ]; +}) |