mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
flameshot: fix desktop Exec path and autostart directory location
This commit is contained in:
parent
a37334b1dd
commit
910e1eab71
@ -1,6 +1,7 @@
|
|||||||
{ mkDerivation
|
{ mkDerivation
|
||||||
, lib
|
, lib
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
|
, fetchpatch
|
||||||
, qtbase
|
, qtbase
|
||||||
, cmake
|
, cmake
|
||||||
, qttools
|
, qttools
|
||||||
@ -19,6 +20,21 @@ mkDerivation rec {
|
|||||||
sha256 = "1ncknjayl6am740f49g0lc28z1zsifbicxz1j1kwps3ksj15nl7a";
|
sha256 = "1ncknjayl6am740f49g0lc28z1zsifbicxz1j1kwps3ksj15nl7a";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# Support for USE_LAUNCHER_ABSOLUTE_PATH.
|
||||||
|
# Should be removed when the next release comes out.
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/flameshot-org/flameshot/commit/1031980ed1e62d24d7f719998b7951d48801e3fa.patch";
|
||||||
|
sha256 = "sha256-o8Zz/bBvitXMDFt5rAfubiUPOx+EQ+ITgrfnFM3dFjE=";
|
||||||
|
})
|
||||||
|
# Fix autostart write path.
|
||||||
|
# Should be removed when the next release comes out.
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/flameshot-org/flameshot/commit/7977cbb52c2d785abd0d85d9df5991e8f7cae441.patch";
|
||||||
|
sha256 = "sha256-wWa9Y+4flBiggOMuX7KQyL+q3f2cALGeQBGusX2x6sk=";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
updateScript = nix-update-script {
|
updateScript = nix-update-script {
|
||||||
attrPath = pname;
|
attrPath = pname;
|
||||||
@ -28,10 +44,13 @@ mkDerivation rec {
|
|||||||
nativeBuildInputs = [ cmake qttools qtsvg ];
|
nativeBuildInputs = [ cmake qttools qtsvg ];
|
||||||
buildInputs = [ qtbase ];
|
buildInputs = [ qtbase ];
|
||||||
|
|
||||||
|
# Use relative path for the .desktop file.
|
||||||
|
cmakeFlags = [ "-DUSE_LAUNCHER_ABSOLUTE_PATH=OFF" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Powerful yet simple to use screenshot software";
|
description = "Powerful yet simple to use screenshot software";
|
||||||
homepage = "https://github.com/flameshot-org/flameshot";
|
homepage = "https://github.com/flameshot-org/flameshot";
|
||||||
maintainers = with maintainers; [ scode ];
|
maintainers = with maintainers; [ scode oxalica ];
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user