mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
c706309a9f
https://hydra.nixos.org/build/229681745/nixlog/2/tail For context see commits91e2f185c0
andf1d5f9766e
.
29 lines
821 B
Nix
29 lines
821 B
Nix
{ mkDerivation, lib, fetchFromGitLab, doxygen, glib, libaccounts-glib, pkg-config, qmake }:
|
|
|
|
mkDerivation rec {
|
|
pname = "accounts-qt";
|
|
version = "1.16";
|
|
|
|
src = fetchFromGitLab {
|
|
sha256 = "1vmpjvysm0ld8dqnx8msa15hlhrkny02cqycsh4k2azrnijg0xjz";
|
|
rev = "VERSION_${version}";
|
|
repo = "libaccounts-qt";
|
|
owner = "accounts-sso";
|
|
};
|
|
|
|
propagatedBuildInputs = [ glib libaccounts-glib ];
|
|
nativeBuildInputs = [ doxygen pkg-config qmake ];
|
|
|
|
# remove forbidden reference to $TMPDIR
|
|
preFixup = ''
|
|
patchelf --shrink-rpath --allowed-rpath-prefixes "/nix/store" "$out"/bin/*
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Qt library for accessing the online accounts database";
|
|
homepage = "https://gitlab.com/accounts-sso";
|
|
license = licenses.lgpl21;
|
|
platforms = with platforms; linux;
|
|
};
|
|
}
|