mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
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
49 lines
1.4 KiB
Nix
49 lines
1.4 KiB
Nix
{ lib, stdenv, pkgs, fetchurl, makeWrapper, nodePackages }:
|
|
|
|
let
|
|
|
|
uiEnv = pkgs.callPackage ./env.nix { };
|
|
|
|
in stdenv.mkDerivation rec {
|
|
pname = "parity-ui";
|
|
version = "0.3.4";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/parity-js/shell/releases/download/v${version}/parity-ui_${version}_amd64.deb";
|
|
sha256 = "1xbd00r9ph8w2d6d2c5xg4b5l74ljzs50rpc6kahfznypmh4kr73";
|
|
name = "${pname}-${version}.deb";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper nodePackages.asar ];
|
|
|
|
buildCommand = ''
|
|
mkdir -p $out/usr/
|
|
ar p $src data.tar.xz | tar -C $out -xJ .
|
|
substituteInPlace $out/usr/share/applications/parity-ui.desktop \
|
|
--replace "/opt/Parity UI" $out/bin
|
|
mv $out/usr/* $out/
|
|
mv "$out/opt/Parity UI" $out/share/parity-ui
|
|
rm -r $out/usr/
|
|
rm -r $out/opt/
|
|
|
|
fixupPhase
|
|
|
|
patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
|
--set-rpath "${uiEnv.libPath}:$out/share/parity-ui" \
|
|
$out/share/parity-ui/parity-ui
|
|
|
|
find $out/share/parity-ui -name "*.node" -exec patchelf --set-rpath "${uiEnv.libPath}:$out/share/parity-ui" {} \;
|
|
|
|
mkdir -p $out/bin
|
|
ln -s $out/share/parity-ui/parity-ui $out/bin/parity-ui
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "UI for Parity. Fast, light, robust Ethereum implementation";
|
|
homepage = "http://parity.io";
|
|
license = licenses.gpl3;
|
|
maintainers = [ maintainers.sorpaas ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|