summary refs log tree commit diff
diff options
context:
space:
mode:
authorSymphorien Gibol <symphorien+git@xlumurb.eu>2020-05-08 12:00:00 +0000
committerSymphorien Gibol <symphorien+git@xlumurb.eu>2020-05-10 12:00:00 +0000
commit6bac73bc4aee6b8f5a58fd9e0af8f2233db510f8 (patch)
tree8281ace2da306f2c1a8f5c034beba3d49429f537
parentfce7562cf46727fdaf801b232116bc9ce0512049 (diff)
downloadnixpkgs-6bac73bc4aee6b8f5a58fd9e0af8f2233db510f8.tar
nixpkgs-6bac73bc4aee6b8f5a58fd9e0af8f2233db510f8.tar.gz
nixpkgs-6bac73bc4aee6b8f5a58fd9e0af8f2233db510f8.tar.bz2
nixpkgs-6bac73bc4aee6b8f5a58fd9e0af8f2233db510f8.tar.lz
nixpkgs-6bac73bc4aee6b8f5a58fd9e0af8f2233db510f8.tar.xz
nixpkgs-6bac73bc4aee6b8f5a58fd9e0af8f2233db510f8.tar.zst
nixpkgs-6bac73bc4aee6b8f5a58fd9e0af8f2233db510f8.zip
krop: install desktop file
-rw-r--r--pkgs/applications/graphics/krop/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/applications/graphics/krop/default.nix b/pkgs/applications/graphics/krop/default.nix
index 818fc63535e..2337dfb370e 100644
--- a/pkgs/applications/graphics/krop/default.nix
+++ b/pkgs/applications/graphics/krop/default.nix
@@ -24,6 +24,10 @@ python3Packages.buildPythonApplication rec {
    "\${qtWrapperArgs[@]}"
   ];
 
+  postInstall = ''
+    install -m666 -Dt $out/share/applications krop.desktop
+  '';
+
   # Disable checks because of interference with older Qt versions // xcb
   doCheck = false;