nixpkgs/pkgs/development/libraries/libayatana-indicator/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
831 B
Nix
Raw Normal View History

2020-05-24 15:25:38 +00:00
{ stdenv, fetchFromGitHub, lib
, pkg-config, cmake
2020-05-24 15:25:38 +00:00
, gtk3
, ayatana-ido
}:
stdenv.mkDerivation rec {
pname = "libayatana-indicator";
version = "0.9.3";
2020-05-24 15:25:38 +00:00
src = fetchFromGitHub {
owner = "AyatanaIndicators";
repo = "libayatana-indicator";
rev = version;
sha256 = "sha256-tOZcrcuZowqDg/LRYTY6PCxKnpEd67k4xAHrIKupunI=";
2020-05-24 15:25:38 +00:00
};
nativeBuildInputs = [ pkg-config cmake ];
2020-05-24 15:25:38 +00:00
buildInputs = [ gtk3 ];
2020-05-24 15:25:38 +00:00
propagatedBuildInputs = [ ayatana-ido ];
2020-05-24 15:25:38 +00:00
meta = with lib; {
2020-05-24 15:25:38 +00:00
description = "Ayatana Indicators Shared Library";
homepage = "https://github.com/AyatanaIndicators/libayatana-indicator";
changelog = "https://github.com/AyatanaIndicators/libayatana-indicator/blob/${version}/ChangeLog";
license = licenses.gpl3Plus;
2020-05-24 15:25:38 +00:00
maintainers = [ maintainers.nickhu ];
platforms = platforms.linux;
2020-05-24 15:25:38 +00:00
};
}