mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 06:23:36 +00:00
6e465f4550
Mostly removes unnecessary use of `extraPkgs = pkgs: appimageTools.defaultFhsEnvArgs.multiPkgs pkgs;` This caused some packages to be listed twice. Also, fix some styling, and accidental use of top-level packages (sometimes due to the `with;` keyword, e.g. on `beeper`). Remove inclusions of `bash`, since `bashInteractive` is already present by default.
39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{ appimageTools, fetchurl, lib }:
|
|
|
|
let
|
|
pname = "station";
|
|
version = "1.52.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/getstation/desktop-app-releases/releases/download/${version}/Station-${version}-x86_64.AppImage";
|
|
sha256 = "0lhiwvnf94is9klvzrqv2wri53gj8nms9lg2678bs4y58pvjxwid";
|
|
};
|
|
|
|
appimageContents = appimageTools.extractType2 {
|
|
inherit pname version src;
|
|
};
|
|
in appimageTools.wrapType2 rec {
|
|
inherit pname version src;
|
|
|
|
profile = ''
|
|
export LC_ALL=C.UTF-8
|
|
'';
|
|
|
|
extraInstallCommands = ''
|
|
install -m 444 -D ${appimageContents}/browserx.desktop $out/share/applications/browserx.desktop
|
|
install -m 444 -D ${appimageContents}/usr/share/icons/hicolor/512x512/apps/browserx.png \
|
|
$out/share/icons/hicolor/512x512/apps/browserx.png
|
|
substituteInPlace $out/share/applications/browserx.desktop \
|
|
--replace 'Exec=AppRun' 'Exec=${pname}'
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A single place for all of your web applications";
|
|
homepage = "https://getstation.com";
|
|
license = licenses.mit;
|
|
platforms = [ "x86_64-linux" ];
|
|
maintainers = with maintainers; [ ];
|
|
mainProgram = "station";
|
|
};
|
|
}
|