signond: init 8.60
This commit is contained in:
parent
0bc5689058
commit
eb6bdaa89b
2 changed files with 32 additions and 0 deletions
30
pkgs/development/libraries/signond/default.nix
Normal file
30
pkgs/development/libraries/signond/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ mkDerivation, lib, fetchFromGitLab, qmake, doxygen }:
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "signond";
|
||||
version = "8.60";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "accounts-sso";
|
||||
repo = pname;
|
||||
rev = "VERSION_${version}";
|
||||
sha256 = "pFpeJ13ut5EoP37W33WrYL2LzkX/k7ZKJcRpPO5l8i4=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
qmake
|
||||
doxygen
|
||||
];
|
||||
|
||||
preConfigure = ''
|
||||
substituteInPlace src/signond/signond.pro \
|
||||
--replace "/etc" "@out@/etc"
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://gitlab.com/accounts-sso/signond";
|
||||
description = "Signon Daemon for Qt";
|
||||
maintainers = with maintainers; [ freezeboy ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -15817,6 +15817,8 @@ in
|
|||
# Not a library, but we do want it to be built for every qt version there
|
||||
# is, to allow users to choose the right build if needed.
|
||||
sddm = callPackage ../applications/display-managers/sddm { };
|
||||
|
||||
signond = callPackage ../development/libraries/signond {};
|
||||
};
|
||||
|
||||
qtEnv = qt5.env;
|
||||
|
|
Loading…
Reference in a new issue