forked from mirrors/nixpkgs
59 lines
1.5 KiB
Nix
59 lines
1.5 KiB
Nix
|
{ mkYarnPackage, fetchFromGitHub, electron, makeWrapper, makeDesktopItem, lib }:
|
||
|
|
||
|
mkYarnPackage rec {
|
||
|
pname = "vieb";
|
||
|
version = "3.1.0";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "jelmerro";
|
||
|
repo = pname;
|
||
|
rev = version;
|
||
|
sha256 = "10l36q75nmqv0azxhmwms6hjicbgyvpk8k6ljrh9d7zxryd3xwz0";
|
||
|
};
|
||
|
|
||
|
packageJSON = ./package.json;
|
||
|
yarnLock = ./yarn.lock;
|
||
|
yarnNix = ./yarn.nix;
|
||
|
yarnFlags = [ "--production" "--offline" ];
|
||
|
|
||
|
nativeBuildInputs = [ makeWrapper ];
|
||
|
|
||
|
desktopItem = makeDesktopItem {
|
||
|
name = "vieb";
|
||
|
exec = "vieb %U";
|
||
|
icon = "vieb";
|
||
|
desktopName = "Web Browser";
|
||
|
genericName = "Web Browser";
|
||
|
categories = "Network;WebBrowser;";
|
||
|
mimeType = lib.concatStringsSep ";" [
|
||
|
"text/html"
|
||
|
"application/xhtml+xml"
|
||
|
"x-scheme-handler/http"
|
||
|
"x-scheme-handler/https"
|
||
|
];
|
||
|
};
|
||
|
|
||
|
postInstall = ''
|
||
|
install -Dm0644 {${desktopItem},$out}/share/applications/vieb.desktop
|
||
|
|
||
|
pushd $out/libexec/vieb/node_modules/vieb/app/img/icons
|
||
|
for file in *.png; do
|
||
|
install -Dm0644 $file $out/share/icons/hicolor/''${file//.png}/apps/vieb.png
|
||
|
done
|
||
|
popd
|
||
|
|
||
|
makeWrapper ${electron}/bin/electron $out/bin/vieb \
|
||
|
--add-flags $out/libexec/vieb/node_modules/vieb/app
|
||
|
'';
|
||
|
|
||
|
distPhase = ":"; # disable useless $out/tarballs directory
|
||
|
|
||
|
meta = with lib; {
|
||
|
homepage = "https://vieb.dev/";
|
||
|
description = "Vim Inspired Electron Browser";
|
||
|
maintainers = with maintainers; [ gebner ];
|
||
|
platforms = platforms.unix;
|
||
|
license = licenses.gpl3;
|
||
|
};
|
||
|
}
|