Unverified Commit 45951ef1 authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

bolt-launcher: 0.9.0 -> 0.14.0, fix desktop item (#389683)

parents a263b340 0eb226c5
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -87,14 +87,14 @@ in
let
  bolt = stdenv.mkDerivation (finalAttrs: {
    pname = "bolt-launcher";
    version = "0.9.0";
    version = "0.14.0";

    src = fetchFromGitHub {
      owner = "AdamCake";
      repo = "bolt";
      rev = finalAttrs.version;
      tag = finalAttrs.version;
      fetchSubmodules = true;
      hash = "sha256-LIlRDcUWbQwIhFjtqYF+oVpTOPZ7IT0vMgysEVyJ1k8=";
      hash = "sha256-fNCi2Wu+oOL6p8IBm6bHZ/rcaFmqoKs2DnXQ+ZA9McE=";
    };

    nativeBuildInputs = [
@@ -154,8 +154,8 @@ let
        desktopName = "Bolt Launcher";
        genericName = finalAttrs.pname;
        comment = "An alternative launcher for RuneScape";
        exec = "${finalAttrs.pname}-${finalAttrs.version}";
        icon = finalAttrs.pname;
        exec = "bolt-launcher";
        icon = "bolt-launcher";
        categories = [ "Game" ];
      })
    ];