stockholm/tv/5pkgs/override/flameshot/default.nix

16 lines
371 B
Nix
Raw Normal View History

2023-01-25 18:19:04 +00:00
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 [] ++ [
2023-01-31 00:10:15 +00:00
./flameshot_imgur_0.10.2.patch
2023-01-25 18:19:04 +00:00
];
})