summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/misc')
-rw-r--r--pkgs/applications/misc/deadd-notification-center/default.nix51
-rw-r--r--pkgs/applications/misc/ipmiview/default.nix10
-rw-r--r--pkgs/applications/misc/ulauncher/default.nix3
3 files changed, 56 insertions, 8 deletions
diff --git a/pkgs/applications/misc/deadd-notification-center/default.nix b/pkgs/applications/misc/deadd-notification-center/default.nix
new file mode 100644
index 000000000000..98fe799b1100
--- /dev/null
+++ b/pkgs/applications/misc/deadd-notification-center/default.nix
@@ -0,0 +1,51 @@
+{ stdenv
+, fetchurl
+, autoPatchelfHook
+, gtk3
+, gobject-introspection
+, libxml2
+}:
+
+let
+ version = "1.7.2";
+
+ dbusService = fetchurl {
+ url = "https://github.com/phuhl/linux_notification_center/raw/${version}/com.ph-uhl.deadd.notification.service.in";
+ sha256 = "0jvmi1c98hm8x1x7kw9ws0nbf4y56yy44c3bqm6rjj4lrm89l83s";
+ };
+in
+stdenv.mkDerivation rec {
+ inherit version;
+ pname = "deadd-notification-center";
+
+ src = fetchurl {
+ url = "https://github.com/phuhl/linux_notification_center/releases/download/${version}/${pname}";
+ sha256 = "13f15slkjiw2n5dnqj13dprhqm3nf1k11jqaqda379yhgygyp9zm";
+ };
+
+ dontUnpack = true;
+
+ nativeBuildInputs = [ autoPatchelfHook ];
+
+ buildInputs = [
+ gtk3
+ gobject-introspection
+ libxml2
+ ];
+
+ installPhase = ''
+ mkdir -p $out/bin $out/share/dbus-1/services
+ cp $src $out/bin/deadd-notification-center
+ chmod +x $out/bin/deadd-notification-center
+
+ sed "s|##PREFIX##|$out|g" ${dbusService} > $out/share/dbus-1/services/com.ph-uhl.deadd.notification.service
+ '';
+
+ meta = with stdenv.lib; {
+ description = "A haskell-written notification center for users that like a desktop with style";
+ homepage = "https://github.com/phuhl/linux_notification_center";
+ license = licenses.bsd3;
+ maintainers = [ maintainers.pacman99 ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/applications/misc/ipmiview/default.nix b/pkgs/applications/misc/ipmiview/default.nix
index 851022899d9f..f0e2b70d939a 100644
--- a/pkgs/applications/misc/ipmiview/default.nix
+++ b/pkgs/applications/misc/ipmiview/default.nix
@@ -13,12 +13,12 @@
stdenv.mkDerivation rec {
pname = "IPMIView";
- version = "2.17.0";
- buildVersion = "200505";
+ version = "2.18.0";
+ buildVersion = "201007";
src = fetchurl {
url = "https://www.supermicro.com/wftp/utility/IPMIView/Linux/IPMIView_${version}_build.${buildVersion}_bundleJRE_Linux_x64.tar.gz";
- sha256 = "0ba0694krj2q77zwdn22v2qzjdy52a7ryhgc3m51s7p17ahigz97";
+ sha256 = "10cv63yhh81gjxahsg4y3zp4mjivc217m4z1vcpwvvnds46c65h8";
};
nativeBuildInputs = [ patchelf makeWrapper ];
@@ -31,8 +31,6 @@ stdenv.mkDerivation rec {
''
patchelf --set-rpath "${stdenv.lib.makeLibraryPath [ libX11 libXext libXrender libXtst libXi ]}" ./jre/lib/amd64/libawt_xawt.so
patchelf --set-rpath "${stdenv.lib.makeLibraryPath [ freetype ]}" ./jre/lib/amd64/libfontmanager.so
- patchelf --set-rpath "${gcc-unwrapped.lib}/lib" ./libiKVM64.so
- patchelf --set-rpath "${gcc-unwrapped.lib}/lib" ./libiKVM_v11_64.so
patchelf --set-rpath "${gcc.cc}/lib:$out/jre/lib/amd64/jli" --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" ./jre/bin/java
patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" ./BMCSecurity/${stunnelBinary}
'';
@@ -56,7 +54,7 @@ stdenv.mkDerivation rec {
# WORK_DIR: unfortunately the ikvm related binaries are loaded from
# and user configuration is written to files in the CWD
makeWrapper $out/jre/bin/java $out/bin/IPMIView \
- --set LD_LIBRARY_PATH "${stdenv.lib.makeLibraryPath [ fontconfig ]}" \
+ --set LD_LIBRARY_PATH "${stdenv.lib.makeLibraryPath [ fontconfig gcc-unwrapped.lib ]}" \
--prefix PATH : "$out/jre/bin:${iputils}/bin:${psmisc}/bin" \
--add-flags "-jar $out/IPMIView20.jar" \
--run 'WORK_DIR=''${XDG_DATA_HOME:-~/.local/share}/ipmiview
diff --git a/pkgs/applications/misc/ulauncher/default.nix b/pkgs/applications/misc/ulauncher/default.nix
index 81e273dd39d8..f1439dc7d161 100644
--- a/pkgs/applications/misc/ulauncher/default.nix
+++ b/pkgs/applications/misc/ulauncher/default.nix
@@ -66,7 +66,6 @@ python3Packages.buildPythonApplication rec {
mock
pytest
pytest-mock
- pytestpep8
xvfb_run
];
@@ -95,7 +94,7 @@ python3Packages.buildPythonApplication rec {
# skip tests in invocation that handle paths that
# aren't nix friendly (i think)
xvfb-run -s '-screen 0 1024x768x16' \
- pytest -k 'not TestPath and not test_handle_key_press_event' --pep8 tests
+ pytest -k 'not TestPath and not test_handle_key_press_event' tests
runHook postCheck
'';