nixpkgs/pkgs/applications/altcoins/parity-ui/default.nix
R. RyanTM 214292b507 altcoins.parity-ui: 0.1.1 -> 0.2.1 (#40647)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/parity-ui/versions.

These checks were done:

- built on NixOS
- Warning: no invocation of /nix/store/11bn5brs3infc88fhfcxq5zhy8p1fsg3-parity-ui-0.2.1/bin/parity-ui had a zero exit code or showed the expected version
- 0 of 1 passed binary check by having a zero exit code.
- 0 of 1 passed binary check by having the new version present in output.
- found 0.2.1 with grep in /nix/store/11bn5brs3infc88fhfcxq5zhy8p1fsg3-parity-ui-0.2.1
- directory tree listing: https://gist.github.com/1087da639a875b39e9704339efd4a70c
- du listing: https://gist.github.com/d17a3cbf1828838b4d0115d801e376c0
2018-05-22 12:35:56 +02:00

51 lines
1.5 KiB
Nix

{ stdenv, pkgs, fetchurl, lib, makeWrapper, nodePackages }:
let
uiEnv = pkgs.callPackage ./env.nix { };
in stdenv.mkDerivation rec {
name = "parity-ui-${version}";
version = "0.2.1";
src = fetchurl {
url = "https://github.com/parity-js/shell/releases/download/v${version}/parity-ui_${version}_amd64.deb";
sha256 = "08gh438mqxj2h8i9hv826bx040wmkmdgsda5grj0k81459vds31l";
name = "${name}.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" {} \;
paxmark m $out/share/parity-ui/parity-ui
mkdir -p $out/bin
ln -s $out/share/parity-ui/parity-ui $out/bin/parity-ui
'';
meta = with stdenv.lib; {
description = "UI for Parity. Fast, light, robust Ethereum implementation";
homepage = http://parity.io;
license = licenses.gpl3;
maintainers = [ maintainers.sorpaas ];
platforms = platforms.linux;
};
}