summary refs log tree commit diff
diff options
context:
space:
mode:
authorIngo Blechschmidt <iblech@web.de>2021-11-05 20:20:16 +0100
committerIngo Blechschmidt <iblech@web.de>2021-11-05 20:20:16 +0100
commit19de3a7c5bbc6e12edcebc6d27d46be8a41c561d (patch)
tree7d0cf487b60150029237d8ef26cffa2de6915d6a
parent505caf29fe0f892927bdd5fb3539f6cb9b85cd39 (diff)
downloadnixpkgs-19de3a7c5bbc6e12edcebc6d27d46be8a41c561d.tar
nixpkgs-19de3a7c5bbc6e12edcebc6d27d46be8a41c561d.tar.gz
nixpkgs-19de3a7c5bbc6e12edcebc6d27d46be8a41c561d.tar.bz2
nixpkgs-19de3a7c5bbc6e12edcebc6d27d46be8a41c561d.tar.lz
nixpkgs-19de3a7c5bbc6e12edcebc6d27d46be8a41c561d.tar.xz
nixpkgs-19de3a7c5bbc6e12edcebc6d27d46be8a41c561d.tar.zst
nixpkgs-19de3a7c5bbc6e12edcebc6d27d46be8a41c561d.zip
thonny: add desktop item
-rw-r--r--pkgs/applications/editors/thonny/default.nix17
1 files changed, 16 insertions, 1 deletions
diff --git a/pkgs/applications/editors/thonny/default.nix b/pkgs/applications/editors/thonny/default.nix
index fb5cb4b8e4c..20d25bb616f 100644
--- a/pkgs/applications/editors/thonny/default.nix
+++ b/pkgs/applications/editors/thonny/default.nix
@@ -1,4 +1,4 @@
-{ lib, fetchFromGitHub, python3 }:
+{ lib, fetchFromGitHub, python3, makeDesktopItem, copyDesktopItems }:
 
 with python3.pkgs;
 
@@ -13,6 +13,17 @@ buildPythonApplication rec {
     sha256 = "13l8blq7y6p7a235x2lfiqml1bd4ba2brm3vfvs8wasjh3fvm9g5";
   };
 
+  nativeBuildInputs = [ copyDesktopItems ];
+
+  desktopItems = [ (makeDesktopItem {
+    name = "Thonny";
+    exec = "thonny";
+    icon = "thonny";
+    desktopName = "Thonny";
+    comment     = "Python IDE for beginners";
+    categories  = "Development;IDE";
+  }) ];
+
   propagatedBuildInputs = with python3.pkgs; [
     jedi
     pyserial
@@ -34,6 +45,10 @@ buildPythonApplication rec {
        --prefix PYTHONPATH : $PYTHONPATH:$(toPythonPath ${python3.pkgs.jedi})
   '';
 
+  postInstall = ''
+    install -Dm644 ./packaging/icons/thonny-48x48.png $out/share/icons/hicolor/48x48/apps/thonny.png
+  '';
+
   # Tests need a DISPLAY
   doCheck = false;