mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
30 lines
755 B
Nix
30 lines
755 B
Nix
{ lib, stdenv, fetchFromGitHub
|
|
, pkg-config, cmake
|
|
, gtk3
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ayatana-ido";
|
|
version = "0.10.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "AyatanaIndicators";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-Y+5fHUe1HAjU/cy7jWKE7zVQUezJNFg4q9tn7H1+NuA=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config cmake ];
|
|
|
|
buildInputs = [ gtk3 ];
|
|
|
|
meta = with lib; {
|
|
description = "Ayatana Display Indicator Objects";
|
|
homepage = "https://github.com/AyatanaIndicators/ayatana-ido";
|
|
changelog = "https://github.com/AyatanaIndicators/ayatana-ido/blob/${version}/ChangeLog";
|
|
license = [ licenses.lgpl3Plus licenses.lgpl21Plus ];
|
|
maintainers = [ maintainers.nickhu ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|