mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
4d6411288c
+ require explicit version of electron in packages
64 lines
1.6 KiB
Nix
64 lines
1.6 KiB
Nix
{ stdenv
|
|
, fetchurl
|
|
, libxkbcommon
|
|
, systemd
|
|
, xorg
|
|
, electron_3
|
|
, makeWrapper
|
|
, makeDesktopItem
|
|
}:
|
|
let
|
|
desktopItem = makeDesktopItem rec {
|
|
name = "Obinskit";
|
|
exec = "obinskit";
|
|
icon = "obinskit";
|
|
desktopName = "Obinskit";
|
|
genericName = "Obinskit keyboard configurator";
|
|
categories = "Utility";
|
|
};
|
|
electron = electron_3;
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "obinskit";
|
|
version = "1.1.4";
|
|
|
|
src = fetchurl {
|
|
url = "http://releases.obins.net/occ/linux/tar/ObinsKit_${version}_x64.tar.gz";
|
|
sha256 = "0q422rmfn4k4ww1qlgrwdmxz4l10dxkd6piynbcw5cr4i5icnh2l";
|
|
};
|
|
|
|
unpackPhase = "tar -xzf $src";
|
|
|
|
sourceRoot = "ObinsKit_${version}_x64";
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
dontConfigure = true;
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/opt/obinskit
|
|
|
|
cp -r resources $out/opt/obinskit/
|
|
cp -r locales $out/opt/obinskit/
|
|
|
|
mkdir -p $out/share/{applications,pixmaps}
|
|
install resources/icons/tray-darwin@2x.png $out/share/pixmaps/obinskit.png
|
|
ln -s ${desktopItem}/share/applications/* $out/share/applications
|
|
'';
|
|
|
|
postFixup = ''
|
|
makeWrapper ${electron}/bin/electron $out/bin/${pname} \
|
|
--add-flags $out/opt/obinskit/resources/app.asar \
|
|
--prefix LD_LIBRARY_PATH : "${stdenv.lib.makeLibraryPath [ stdenv.cc.cc.lib libxkbcommon systemd.lib xorg.libXt ]}"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Graphical configurator for Anne Pro and Anne Pro II keyboards";
|
|
homepage = "http://en.obins.net/obinskit/"; # https is broken
|
|
license = licenses.unfree;
|
|
maintainers = with maintainers; [ shou ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|