Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / ayatana-ido / default.nix
blob85c785be3cb3756a1fbfe8a8764179ad3118ab03
1 { lib, stdenv, fetchFromGitHub
2 , pkg-config, cmake
3 , gtk3
4 }:
6 stdenv.mkDerivation rec {
7   pname = "ayatana-ido";
8   version = "0.10.1";
10   src = fetchFromGitHub {
11     owner = "AyatanaIndicators";
12     repo = pname;
13     rev = version;
14     sha256 = "sha256-uecUyqSL02SRdlLbWIy0luHACTFoyMXQ6rOIYuisZsw=";
15   };
17   nativeBuildInputs = [ pkg-config cmake ];
19   buildInputs = [ gtk3 ];
21   meta = with lib; {
22     description = "Ayatana Display Indicator Objects";
23     homepage = "https://github.com/AyatanaIndicators/ayatana-ido";
24     changelog = "https://github.com/AyatanaIndicators/ayatana-ido/blob/${version}/ChangeLog";
25     license = [ licenses.lgpl3Plus licenses.lgpl21Plus ];
26     maintainers = [ maintainers.nickhu ];
27     platforms = platforms.linux;
28   };