mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-13 16:07:35 +00:00
ayatana-ido: move to pkgs/by-name
This commit is contained in:
parent
9ea3418b17
commit
37e443af61
@ -1,6 +1,10 @@
|
||||
{ lib, stdenv, fetchFromGitHub
|
||||
, pkg-config, cmake
|
||||
, gtk3
|
||||
{
|
||||
cmake,
|
||||
fetchFromGitHub,
|
||||
gtk3,
|
||||
lib,
|
||||
pkg-config,
|
||||
stdenv,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@ -14,7 +18,10 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "sha256-WEPW9BstDv2k/5dTEDQza3eOQ9bd6CEVvmd817sEPAs=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config cmake ];
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
pkg-config
|
||||
];
|
||||
|
||||
buildInputs = [ gtk3 ];
|
||||
|
||||
@ -22,7 +29,10 @@ stdenv.mkDerivation rec {
|
||||
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 ];
|
||||
license = [
|
||||
licenses.lgpl3Plus
|
||||
licenses.lgpl21Plus
|
||||
];
|
||||
maintainers = [ maintainers.nickhu ];
|
||||
platforms = platforms.linux;
|
||||
};
|
@ -19437,8 +19437,6 @@ with pkgs;
|
||||
inherit (darwin.apple_sdk.frameworks) CoreAudio AudioToolbox;
|
||||
};
|
||||
|
||||
ayatana-ido = callPackage ../development/libraries/ayatana-ido { };
|
||||
|
||||
ayatana-webmail = callPackage ../applications/networking/mailreaders/ayatana-webmail { };
|
||||
|
||||
azmq = callPackage ../development/libraries/azmq { };
|
||||
|
Loading…
Reference in New Issue
Block a user