mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
tevent: clean up expression
* format with nixpkgs-fmt * do not use aliases
This commit is contained in:
parent
fa7d35dcbf
commit
f6f09daa23
@ -1,5 +1,12 @@
|
||||
{ stdenv, fetchurl, python, pkgconfig, readline, libxslt
|
||||
, docbook_xsl, docbook_xml_dtd_42, fixDarwinDylibNames
|
||||
{ stdenv
|
||||
, fetchurl
|
||||
, python
|
||||
, pkg-config
|
||||
, readline
|
||||
, libxslt
|
||||
, docbook-xsl-nons
|
||||
, docbook_xml_dtd_42
|
||||
, fixDarwinDylibNames
|
||||
, wafHook
|
||||
}:
|
||||
|
||||
@ -12,9 +19,19 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "0xwzgzrqamfdlklwacp9d219pqkah0yfrhxb1j7bxlmgzp924j7g";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig fixDarwinDylibNames python wafHook
|
||||
docbook_xsl docbook_xml_dtd_42 ];
|
||||
buildInputs = [ readline libxslt ];
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
fixDarwinDylibNames
|
||||
python
|
||||
wafHook
|
||||
docbook-xsl-nons
|
||||
docbook_xml_dtd_42
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
readline
|
||||
libxslt
|
||||
];
|
||||
|
||||
wafPath = "buildtools/bin/waf";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user