mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
gwe: init at 0.15.3
This commit is contained in:
parent
f1ff32e49a
commit
2f3e0cf3ba
2 changed files with 93 additions and 0 deletions
89
pkgs/tools/misc/gwe/default.nix
Normal file
89
pkgs/tools/misc/gwe/default.nix
Normal file
|
@ -0,0 +1,89 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitLab
|
||||
, wrapGAppsHook
|
||||
, makeWrapper
|
||||
, pkg-config
|
||||
, meson
|
||||
, ninja
|
||||
, cmake
|
||||
, gobject-introspection
|
||||
, desktop-file-utils
|
||||
, python3
|
||||
, gtk3
|
||||
, libdazzle
|
||||
, libappindicator-gtk3
|
||||
, libnotify
|
||||
, nvidia_x11
|
||||
}:
|
||||
|
||||
let
|
||||
pythonEnv = python3.withPackages (pypkgs: with pypkgs; [
|
||||
injector
|
||||
matplotlib
|
||||
peewee
|
||||
pynvml
|
||||
pygobject3
|
||||
xlib
|
||||
pyxdg
|
||||
requests
|
||||
rx
|
||||
gtk3
|
||||
]);
|
||||
in stdenv.mkDerivation rec {
|
||||
pname = "gwe";
|
||||
version = "0.15.3";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "leinardi";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "1znd2g02j0klg8w6cgwvaxc8anan6sidadknl0vh9jxmzz75xp9z";
|
||||
};
|
||||
|
||||
prePatch = ''
|
||||
patchShebangs scripts/{make_local_manifest,meson_post_install}.py
|
||||
|
||||
substituteInPlace gwe/repository/nvidia_repository.py \
|
||||
--replace "from py3nvml import py3nvml" "import pynvml" \
|
||||
--replace "py3nvml.py3nvml" "pynvml" \
|
||||
--replace "py3nvml" "pynvml"
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [
|
||||
wrapGAppsHook
|
||||
pkg-config
|
||||
meson
|
||||
ninja
|
||||
cmake
|
||||
gobject-introspection
|
||||
desktop-file-utils
|
||||
pythonEnv
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
gtk3
|
||||
libdazzle
|
||||
libappindicator-gtk3
|
||||
libnotify
|
||||
];
|
||||
|
||||
postInstall = ''
|
||||
mv $out/bin/gwe $out/lib/gwe-bin
|
||||
|
||||
makeWrapper ${pythonEnv}/bin/python $out/bin/gwe \
|
||||
--add-flags "$out/lib/gwe-bin" \
|
||||
--prefix LD_LIBRARY_PATH : "/run/opengl-driver/lib" \
|
||||
--prefix PATH : "${builtins.concatStringsSep ":" [ (lib.makeBinPath [ nvidia_x11 nvidia_x11.settings ]) "/run/wrappers/bin" ]}" \
|
||||
--unset "SHELL" \
|
||||
''${gappsWrapperArgs[@]}
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "System utility designed to provide information, control the fans and overclock your NVIDIA card";
|
||||
homepage = "https://gitlab.com/leinardi/gwe";
|
||||
platforms = platforms.linux;
|
||||
license = licenses.gpl3Only;
|
||||
maintainers = [ maintainers.ivar ];
|
||||
};
|
||||
}
|
|
@ -11153,6 +11153,10 @@ in
|
|||
|
||||
gprolog = callPackage ../development/compilers/gprolog { };
|
||||
|
||||
gwe = callPackage ../tools/misc/gwe {
|
||||
nvidia_x11 = linuxPackages.nvidia_x11;
|
||||
};
|
||||
|
||||
gwt240 = callPackage ../development/compilers/gwt/2.4.0.nix { };
|
||||
|
||||
idrisPackages = dontRecurseIntoAttrs (callPackage ../development/idris-modules {
|
||||
|
|
Loading…
Reference in a new issue