summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/graphics/gcolor2
diff options
context:
space:
mode:
authorvolth <volth@volth.com>2018-10-12 22:56:15 +0000
committervolth <volth@volth.com>2018-10-12 22:56:15 +0000
commitc0fed1ba7740070cb20454d6aa77f087751a2a2b (patch)
treeed60b74a1d698af2234e6bd537f5af3ab836b2ae /pkgs/applications/graphics/gcolor2
parentef93155f60284e7cd694ded81bd15f07997575bc (diff)
perlXMLParser -> perlPackages.XMLParser
Diffstat (limited to 'pkgs/applications/graphics/gcolor2')
-rw-r--r--pkgs/applications/graphics/gcolor2/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/graphics/gcolor2/default.nix b/pkgs/applications/graphics/gcolor2/default.nix
index 27ca6e26e9f9..025b3ae65ece 100644
--- a/pkgs/applications/graphics/gcolor2/default.nix
+++ b/pkgs/applications/graphics/gcolor2/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, gtk2, perl, perlXMLParser, pkgconfig } :
+{stdenv, fetchurl, gtk2, perlPackages, pkgconfig } :
let version = "0.4"; in
stdenv.mkDerivation {
@@ -21,7 +21,8 @@ stdenv.mkDerivation {
[ ];
nativeBuildInputs = [ pkgconfig ];
-buildInputs = [ gtk2 perl perlXMLParser ];
+ buildInputs = [ gtk2 ]
+ ++ (with perlPackages; [ perl XMLParser ]);
meta = {
description = "Simple GTK+2 color selector";