mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
station: init at 1.51.1
This commit is contained in:
parent
1fb1f41c1b
commit
45e3058f78
2 changed files with 32 additions and 0 deletions
30
pkgs/applications/networking/station/default.nix
Normal file
30
pkgs/applications/networking/station/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ appimageTools, fetchurl, gsettings-desktop-schemas, gtk3, lib }:
|
||||
|
||||
let
|
||||
pname = "station";
|
||||
version = "1.51.1";
|
||||
in appimageTools.wrapType2 rec {
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/getstation/desktop-app-releases/releases/download/${version}/Station-${version}.AppImage";
|
||||
sha256 = "1vfis2q7zf1sabdlxzmbxh135jk25ylhavrgfc30k5nad9cacw8k";
|
||||
};
|
||||
|
||||
profile = ''
|
||||
export LC_ALL=C.UTF-8
|
||||
export XDG_DATA_DIRS=${gsettings-desktop-schemas}/share/gsettings-schemas/${gsettings-desktop-schemas.name}:${gtk3}/share/gsettings-schemas/${gtk3.name}:$XDG_DATA_DIRS
|
||||
'';
|
||||
|
||||
multiPkgs = null;
|
||||
extraPkgs = appimageTools.defaultFhsEnvArgs.multiPkgs;
|
||||
extraInstallCommands = "mv $out/bin/{${name},${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; [ lattfein ];
|
||||
};
|
||||
}
|
|
@ -19772,6 +19772,8 @@ in
|
|||
|
||||
speedread = callPackage ../applications/misc/speedread { };
|
||||
|
||||
station = callPackage ../applications/networking/station { };
|
||||
|
||||
synapse = callPackage ../applications/misc/synapse { };
|
||||
|
||||
synapse-bt = callPackage ../applications/networking/p2p/synapse-bt {
|
||||
|
|
Loading…
Reference in a new issue