4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
88 lines
1.8 KiB
Nix
88 lines
1.8 KiB
Nix
{ lib, stdenv
|
|
, fetchurl
|
|
, glib
|
|
, libX11
|
|
, gst_all_1
|
|
, sqlite
|
|
, epoxy
|
|
, pango
|
|
, cairo
|
|
, gdk-pixbuf
|
|
, e2fsprogs
|
|
, libkrb5
|
|
, libva
|
|
, openssl
|
|
, pcsclite
|
|
, gtk3
|
|
, libselinux
|
|
, libxml2
|
|
, python3Packages
|
|
, cpio
|
|
, autoPatchelfHook
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "nice-dcv-client";
|
|
version = "2020.2.1737-1";
|
|
|
|
src =
|
|
fetchurl {
|
|
url = "https://d1uj6qtbmh3dt5.cloudfront.net/2020.2/Clients/nice-dcv-viewer-${version}.el8.x86_64.rpm";
|
|
sha256 = "sha256-SUpfHd/Btc07cfjc3zx5I5BiNatr/c4E2/mfJuU4R1E=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoPatchelfHook python3Packages.rpm ];
|
|
unpackPhase = ''
|
|
rpm2cpio $src | ${cpio}/bin/cpio -idm
|
|
'';
|
|
|
|
buildInputs = [
|
|
libselinux
|
|
libkrb5
|
|
libxml2
|
|
libva
|
|
e2fsprogs
|
|
libX11
|
|
openssl
|
|
pcsclite
|
|
gtk3
|
|
cairo
|
|
epoxy
|
|
pango
|
|
gdk-pixbuf
|
|
gst_all_1.gstreamer
|
|
gst_all_1.gst-plugins-base
|
|
];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin/
|
|
mkdir -p $out/lib64/
|
|
|
|
mv usr/bin/dcvviewer $out/bin/dcvviewer
|
|
mv usr/lib64/* $out/lib64/
|
|
|
|
mkdir -p $out/libexec/dcvviewer
|
|
mv usr/libexec/dcvviewer/dcvviewer $out/libexec/dcvviewer/dcvviewer
|
|
patchelf \
|
|
--set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \
|
|
$out/libexec/dcvviewer/dcvviewer
|
|
|
|
# Fix the wrapper script to have the right basedir.
|
|
sed -i "s#basedir=/usr#basedir=$out#" $out/bin/dcvviewer
|
|
|
|
mv usr/share $out/
|
|
${glib.dev}/bin/glib-compile-schemas $out/share/glib-2.0/schemas
|
|
|
|
# broken symlink, seems to give a warning message if i don't delete it
|
|
rm $out/lib64/dcvviewer/gio/modules/libdconfsettings.so
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "High-performance remote display protocol";
|
|
homepage = "https://aws.amazon.com/hpc/dcv/";
|
|
license = licenses.unfree;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ rmcgibbo ];
|
|
};
|
|
}
|