mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 05:13:04 +00:00
nix-tour: Add XDG desktop entry
Co-authored-by: Sandro Jäckel <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
976de01d44
commit
01dd766701
@ -4,6 +4,8 @@
|
|||||||
, electron
|
, electron
|
||||||
, runtimeShell
|
, runtimeShell
|
||||||
, makeWrapper
|
, makeWrapper
|
||||||
|
, copyDesktopItems
|
||||||
|
, makeDesktopItem
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -17,7 +19,7 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "09b1vxli4zv1nhqnj6c0vrrl51gaira94i8l7ww96fixqxjgdwvb";
|
sha256 = "09b1vxli4zv1nhqnj6c0vrrl51gaira94i8l7ww96fixqxjgdwvb";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ makeWrapper ];
|
nativeBuildInputs = [ makeWrapper copyDesktopItems ];
|
||||||
buildInputs = [ electron ];
|
buildInputs = [ electron ];
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
@ -27,6 +29,18 @@ stdenv.mkDerivation rec {
|
|||||||
--add-flags $out/share/nix-tour/electron-main.js
|
--add-flags $out/share/nix-tour/electron-main.js
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
desktopItems = [
|
||||||
|
(makeDesktopItem {
|
||||||
|
name = pname;
|
||||||
|
desktopName = "Tour of Nix";
|
||||||
|
genericName = "Tour of Nix";
|
||||||
|
comment =
|
||||||
|
"Interactive programming guide dedicated to the nix programming language";
|
||||||
|
categories = [ "Development" "Documentation" ];
|
||||||
|
exec = "nix-tour";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "'the tour of nix' from nixcloud.io/tour as offline version";
|
description = "'the tour of nix' from nixcloud.io/tour as offline version";
|
||||||
homepage = "https://nixcloud.io/tour";
|
homepage = "https://nixcloud.io/tour";
|
||||||
|
Loading…
Reference in New Issue
Block a user