lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

signond: init 8.60

authored by

freezeboy and committed by
Elias Probst
eb6bdaa8 0bc56890

+32
+30
pkgs/development/libraries/signond/default.nix
··· 1 + { mkDerivation, lib, fetchFromGitLab, qmake, doxygen }: 2 + 3 + mkDerivation rec { 4 + pname = "signond"; 5 + version = "8.60"; 6 + 7 + src = fetchFromGitLab { 8 + owner = "accounts-sso"; 9 + repo = pname; 10 + rev = "VERSION_${version}"; 11 + sha256 = "pFpeJ13ut5EoP37W33WrYL2LzkX/k7ZKJcRpPO5l8i4="; 12 + }; 13 + 14 + nativeBuildInputs = [ 15 + qmake 16 + doxygen 17 + ]; 18 + 19 + preConfigure = '' 20 + substituteInPlace src/signond/signond.pro \ 21 + --replace "/etc" "@out@/etc" 22 + ''; 23 + 24 + meta = with lib; { 25 + homepage = "https://gitlab.com/accounts-sso/signond"; 26 + description = "Signon Daemon for Qt"; 27 + maintainers = with maintainers; [ freezeboy ]; 28 + platforms = platforms.linux; 29 + }; 30 + }
+2
pkgs/top-level/all-packages.nix
··· 15817 15817 # Not a library, but we do want it to be built for every qt version there 15818 15818 # is, to allow users to choose the right build if needed. 15819 15819 sddm = callPackage ../applications/display-managers/sddm { }; 15820 + 15821 + signond = callPackage ../development/libraries/signond {}; 15820 15822 }; 15821 15823 15822 15824 qtEnv = qt5.env;