mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-05 12:34:00 +00:00
87447d4776
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
42 lines
1.4 KiB
Nix
42 lines
1.4 KiB
Nix
{ lib, fetchurl, appimageTools }:
|
|
|
|
let
|
|
pname = "polypane";
|
|
version = "10.0.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/firstversionist/${pname}/releases/download/v${version}/${pname}-${version}.AppImage";
|
|
name = "${pname}-${version}.AppImage";
|
|
sha256 = "eujv99L5svMhDIKHFOfm7sOwNZ4xiUaIsimfOf4BBik=";
|
|
};
|
|
|
|
appimageContents = appimageTools.extractType2 {
|
|
inherit pname src version;
|
|
};
|
|
in appimageTools.wrapType2 {
|
|
inherit pname src version;
|
|
|
|
multiPkgs = null;
|
|
extraPkgs = pkgs: appimageTools.defaultFhsEnvArgs.multiPkgs pkgs ++ [ pkgs.bash ];
|
|
|
|
extraInstallCommands = ''
|
|
ln -s $out/bin/${pname}-${version} $out/bin/${pname}
|
|
install -m 444 -D ${appimageContents}/${pname}.desktop $out/share/applications/${pname}.desktop
|
|
install -m 444 -D ${appimageContents}/${pname}.png \
|
|
$out/share/icons/hicolor/512x512/apps/${pname}.png
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Browser with unified devtools targeting responsability and acessibility";
|
|
longDescription = ''
|
|
The stand-alone browser for ambitious developers that want to build responsive,
|
|
accessible and performant websites in a fraction of the time it takes with other browsers.
|
|
'';
|
|
homepage = "https://polypane.app/";
|
|
maintainers = with maintainers; [ zoedsoupe ];
|
|
platforms = [ "x86_64-linux" ];
|
|
changelog = "https://polypane.app/docs/changelog/";
|
|
license = licenses.unfree;
|
|
};
|
|
}
|