pkgs/tools: stdenv.lib -> lib

This commit is contained in:
Ben Siraphob
2021-01-15 17:12:36 +07:00
parent 94f3683935
commit 8c5d37129f
916 changed files with 2510 additions and 2510 deletions
+4 -4
View File
@@ -1,20 +1,20 @@
{stdenv, fetchurl, python2, libxml2}:
{lib, stdenv, fetchurl, python2, libxml2}:
assert libxml2.pythonSupport == true;
stdenv.mkDerivation {
name = "xpf-0.2";
src = fetchurl {
url = "http://tarballs.nixos.org/xpf-0.2.tar.gz";
sha256 = "0ljx91w68rnh4871c0xlq2whlmhqz8dr39wcdczfjjpniqz1fmpz";
};
buildInputs = [ python2 libxml2 ];
meta = {
description = "XML Pipes and Filters - command line tools for manipulating and querying XML data";
homepage = "http://www.cs.uu.nl/wiki/bin/view/Martin/XmlPipesAndFilters";
platforms = stdenv.lib.platforms.unix;
platforms = lib.platforms.unix;
};
}