3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/deepin/dde-network-utils/default.nix
2019-04-07 06:07:59 -03:00

55 lines
1.1 KiB
Nix

{ stdenv, fetchFromGitHub, substituteAll, qmake, pkgconfig, qttools,
dde-qt-dbus-factory, proxychains, which, deepin }:
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "dde-network-utils";
version = "0.1.2";
src = fetchFromGitHub {
owner = "linuxdeepin";
repo = pname;
rev = version;
sha256 = "1m6njld06yphppyyhygz8mv4gvq2zw0676pbls9m3fs7b3dl56sv";
};
nativeBuildInputs = [
qmake
pkgconfig
qttools
deepin.setupHook
];
buildInputs = [
dde-qt-dbus-factory
proxychains
which
];
patches = [
(substituteAll {
src = ./fix-paths.patch;
inherit which proxychains;
})
];
postPatch = ''
searchHardCodedPaths # for debugging
patchShebangs translate_generation.sh
'';
postFixup = ''
searchHardCodedPaths $out # for debugging
'';
passthru.updateScript = deepin.updateScript { inherit name; };
meta = with stdenv.lib; {
description = "Deepin network utils";
homepage = https://github.com/linuxdeepin/dde-network-utils;
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ romildo ];
};
}