mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
49c63e498c
These empty inherits were accidentally introduced by https://github.com/NixOS/nixpkgs/pull/66585
43 lines
1.0 KiB
Nix
43 lines
1.0 KiB
Nix
{ stdenv, fetchFromGitHub, pkgconfig, qmake, qttools, gnome3,
|
|
dde-polkit-agent, deepin }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "dpa-ext-gnomekeyring";
|
|
version = "5.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linuxdeepin";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "168j42nwyw7vcgwc0fha2pjpwwlgir70fq1hns4ia1dkdqa1nhzw";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkgconfig
|
|
qmake
|
|
qttools
|
|
deepin.setupHook
|
|
];
|
|
|
|
buildInputs = [
|
|
dde-polkit-agent
|
|
gnome3.libgnome-keyring
|
|
];
|
|
|
|
postPatch = ''
|
|
searchHardCodedPaths
|
|
patchShebangs translate_generation.sh
|
|
fixPath $out /usr dpa-ext-gnomekeyring.pro gnomekeyringextention.cpp
|
|
'';
|
|
|
|
passthru.updateScript = deepin.updateScript { name = "${pname}-${version}"; };
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "GNOME keyring extension for dde-polkit-agent";
|
|
homepage = https://github.com/linuxdeepin/dpa-ext-gnomekeyring;
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ romildo ];
|
|
};
|
|
}
|