forked from NixOS/nixpkgs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request NixOS#67334 from lightbulbjim/irccloud
irccloud: init at 0.13.0
- Loading branch information
Showing
3 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{ appimageTools, fetchurl, lib }: | ||
|
||
let | ||
pname = "irccloud"; | ||
version = "0.13.0"; | ||
name = "${pname}-${version}"; | ||
|
||
src = fetchurl { | ||
url = "https://github.com/irccloud/irccloud-desktop/releases/download/v${version}/IRCCloud-${version}-linux-x86_64.AppImage"; | ||
sha256 = "0ff69m5jav2c90918avsr5wvik2gds3klij3dzhkb352fgrd1s0l"; | ||
}; | ||
|
||
appimageContents = appimageTools.extractType2 { | ||
inherit name src; | ||
}; | ||
|
||
in appimageTools.wrapType2 rec { | ||
inherit name src; | ||
|
||
extraPkgs = pkgs: with pkgs; [ at-spi2-core ]; | ||
|
||
extraInstallCommands = '' | ||
mv $out/bin/${name} $out/bin/${pname} | ||
install -m 444 -D ${appimageContents}/irccloud.desktop $out/share/applications/irccloud.desktop | ||
install -m 444 -D ${appimageContents}/usr/share/icons/hicolor/512x512/apps/irccloud.png \ | ||
$out/share/icons/hicolor/512x512/apps/irccloud.png | ||
substituteInPlace $out/share/applications/irccloud.desktop \ | ||
--replace 'Exec=AppRun' 'Exec=${pname}' | ||
''; | ||
|
||
meta = with lib; { | ||
description = "A desktop client for IRCCloud"; | ||
homepage = "https://www.irccloud.com"; | ||
license = licenses.asl20; | ||
platforms = [ "x86_64-linux" ]; | ||
maintainers = with maintainers; [ lightbulbjim ]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters