about summary refs log tree commit diff
path: root/nixpkgs/pkgs/data/themes/solarc/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/data/themes/solarc/default.nix')
-rw-r--r--nixpkgs/pkgs/data/themes/solarc/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixpkgs/pkgs/data/themes/solarc/default.nix b/nixpkgs/pkgs/data/themes/solarc/default.nix
index b8e937564a55..3f6932e40a0c 100644
--- a/nixpkgs/pkgs/data/themes/solarc/default.nix
+++ b/nixpkgs/pkgs/data/themes/solarc/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, autoconf, automake, pkgconfig,
+{ lib, stdenv, fetchFromGitHub, autoconf, automake, pkg-config,
   gtk-engine-murrine, gtk3
 }:
 
@@ -13,7 +13,7 @@ stdenv.mkDerivation {
     sha256 = "005b66whyxba3403yzykpnlkz0q4m154pxpb4jzcny3fggy9r70s";
   };
 
-  nativeBuildInputs = [ autoconf automake pkgconfig gtk3 ];
+  nativeBuildInputs = [ autoconf automake pkg-config gtk3 ];
 
   propagatedUserEnvPkgs = [ gtk-engine-murrine gtk3 ];
 
@@ -21,7 +21,7 @@ stdenv.mkDerivation {
     ./autogen.sh --prefix=$out
   '';
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "Solarized version of the Arc theme";
     homepage = "https://github.com/schemar/solarc-theme";
     license = licenses.gpl3;