Skip to content

Commit

Permalink
lomiri-click
Browse files Browse the repository at this point in the history
  • Loading branch information
onny committed Dec 26, 2022
1 parent 9141029 commit 8997697
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
46 changes: 46 additions & 0 deletions pkgs/desktops/lomiri/core/lomiri-click/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{ lib
, pkgs
, stdenv
, fetchFromGitLab
, autoconf
, automake
, perl
, libtool
, vala
}:

stdenv.mkDerivation rec {
pname = "lomiri-click";
version = "unstable-2022-10-27";

src = fetchFromGitLab {
domain = "gitlab.com";
owner = "ubports";
repo = "development/core/click";
rev = "e41fec1f635b70a746fb3c6c1ed2b5c3980c01c3";
sha256 = "sha256-xKoFnwREYRE7pyeNk4xu5fXAvLBuYGxQhOIaOwoGA2I=";
};

nativeBuildInputs = [
autoconf
automake
];

buildInputs = [
perl
libtool
vala
];

preConfigure = ''
./autogen.sh
'';

meta = with lib; {
description = "Lomiri API library";
homepage = "https://gitlab.com/ubports/development/core/lomiri-api";
license = licenses.gpl3Only;
maintainers = with maintainers; [ onny ];
};

}
1 change: 1 addition & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9323,6 +9323,7 @@ with pkgs;
lomiri = libsForQt5.callPackage ../desktops/lomiri { };
lomiri-api = callPackage ../desktops/lomiri/core/lomiri-api { };
lomiri-app-launch = callPackage ../desktops/lomiri/core/lomiri-app-launch { };
lomiri-click = callPackage ../desktops/lomiri/core/lomiri-click { };

longview = callPackage ../servers/monitoring/longview { };

Expand Down

0 comments on commit 8997697

Please sign in to comment.