-
-
Notifications
You must be signed in to change notification settings - Fork 15k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
46 changed files
with
441 additions
and
252 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
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
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
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,28 @@ | ||
{ lib, appimageTools, fetchurl }: | ||
|
||
let | ||
pname = "chrysalis"; | ||
version = "0.7.9"; | ||
in appimageTools.wrapType2 rec { | ||
name = "${pname}-${version}-binary"; | ||
|
||
src = fetchurl { | ||
url = "https://github.com/keyboardio/${pname}/releases/download/${pname}-${version}/${pname}-${version}.AppImage"; | ||
sha256 = "12w4vv7dwfpvxpc8kpfas90y7yy8mb8dj2096z3vw1bli5lrn3zi"; | ||
}; | ||
|
||
multiPkgs = null; | ||
extraPkgs = p: (appimageTools.defaultFhsEnvArgs.multiPkgs p) ++ [ | ||
p.glib | ||
]; | ||
|
||
extraInstallCommands = "mv $out/bin/${name} $out/bin/${pname}"; | ||
|
||
meta = with lib; { | ||
description = "A graphical configurator for Kaleidoscope-powered keyboards"; | ||
homepage = "https://github.com/keyboardio/Chrysalis"; | ||
license = licenses.gpl3; | ||
maintainers = with maintainers; [ aw ]; | ||
platforms = [ "x86_64-linux" ]; | ||
}; | ||
} |
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
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,41 @@ | ||
{ lib, fetchurl, appimageTools }: | ||
|
||
let | ||
pname = "lens"; | ||
version = "3.6.7"; | ||
name = "${pname}-${version}"; | ||
|
||
src = fetchurl { | ||
url = "https://github.com/lensapp/lens/releases/download/v${version}/Lens-${version}.AppImage"; | ||
sha256 = "0var7d31ab6lq2vq6brk2dnhlnhqjp2gdqhygif567cdmcpn4vz8"; | ||
name="${pname}.AppImage"; | ||
}; | ||
|
||
appimageContents = appimageTools.extractType2 { | ||
inherit name src; | ||
}; | ||
|
||
in appimageTools.wrapType2 { | ||
inherit name src; | ||
|
||
extraInstallCommands = | ||
'' | ||
mv $out/bin/${name} $out/bin/${pname} | ||
install -m 444 -D ${appimageContents}/kontena-lens.desktop $out/share/applications/${pname}.desktop | ||
install -m 444 -D ${appimageContents}/usr/share/icons/hicolor/512x512/apps/kontena-lens.png \ | ||
$out/share/icons/hicolor/512x512/apps/${pname}.png | ||
substituteInPlace $out/share/applications/${pname}.desktop \ | ||
--replace 'Icon=kontena-lens' 'Icon=${pname}' \ | ||
--replace 'Exec=AppRun' 'Exec=${pname}' | ||
''; | ||
|
||
meta = with lib; { | ||
description = "The Kubernetes IDE"; | ||
homepage = "https://k8slens.dev/"; | ||
license = licenses.mit; | ||
maintainers = with maintainers; [ dbirks ]; | ||
platforms = [ "x86_64-linux" ]; | ||
}; | ||
} |
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
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
Oops, something went wrong.