summaryrefslogtreecommitdiffstats
path: root/pkgs/desktops/gnome-2/platform/ORBit2/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops/gnome-2/platform/ORBit2/default.nix')
-rw-r--r--pkgs/desktops/gnome-2/platform/ORBit2/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/desktops/gnome-2/platform/ORBit2/default.nix b/pkgs/desktops/gnome-2/platform/ORBit2/default.nix
index f30c48b08e96..ab76e0c64fd1 100644
--- a/pkgs/desktops/gnome-2/platform/ORBit2/default.nix
+++ b/pkgs/desktops/gnome-2/platform/ORBit2/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, pkgconfig, glib, libIDL, libintl }:
+{ lib, stdenv, fetchurl, pkg-config, glib, libIDL, libintl }:
stdenv.mkDerivation rec {
name = "ORBit2-${minVer}.19";
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
sha256 = "0l3mhpyym9m5iz09fz0rgiqxl2ym6kpkwpsp1xrr4aa80nlh1jam";
};
- nativeBuildInputs = [ pkgconfig libintl ];
+ nativeBuildInputs = [ pkg-config libintl ];
propagatedBuildInputs = [ glib libIDL ];
outputs = [ "out" "dev" ];
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
moveToOutput "bin/orbit2-config" "$dev"
'';
- meta = with stdenv.lib; {
+ meta = with lib; {
homepage = "https://projects.gnome.org/ORBit2/";
description = "A CORBA 2.4-compliant Object Request Broker";
platforms = platforms.unix;