diff options
author | lassulus <git@lassul.us> | 2023-02-09 09:39:02 +0100 |
---|---|---|
committer | lassulus <git@lassul.us> | 2023-02-09 09:39:02 +0100 |
commit | 4dc160536675b19a6e3029d142e1824f1d5a9272 (patch) | |
tree | e7e9b05b91a893a35ee3000cced81553a574bc48 /krebs/5pkgs/simple/flameshot-once/flameshot/default.nix | |
parent | 5b768d2b0050507037584f3b7f4a5cf90d627c57 (diff) | |
parent | 9a52edeea22f686c189933de0538ab69a3c054bd (diff) |
Merge remote-tracking branch 'ni/master'
Diffstat (limited to 'krebs/5pkgs/simple/flameshot-once/flameshot/default.nix')
-rw-r--r-- | krebs/5pkgs/simple/flameshot-once/flameshot/default.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/krebs/5pkgs/simple/flameshot-once/flameshot/default.nix b/krebs/5pkgs/simple/flameshot-once/flameshot/default.nix new file mode 100644 index 000000000..f60acef08 --- /dev/null +++ b/krebs/5pkgs/simple/flameshot-once/flameshot/default.nix @@ -0,0 +1,16 @@ +{ pkgs }: + +pkgs.flameshot.overrideAttrs (old: rec { + name = "flameshot-${version}"; + version = "12.1.0-pre"; + src = pkgs.fetchFromGitHub { + owner = "flameshot-org"; + repo = "flameshot"; + rev = "f7e41f4d708e50eeaec892408069da25a28e04a2"; + hash = "sha256-fZquXY0xSaN1hJgCh16MocIlvxHe1c2Nt+fGF2NIOVw="; + }; + patches = old.patches or [] ++ [ + ./flameshot-12.imgur.patch + ./flameshot-12.history.patch + ]; +}) |