Merge pull request #117661 from siraben/stdenv-cleanup2

treewide: remove redundant stdenv
This commit is contained in:
Sandro 2021-03-26 09:52:33 +01:00 committed by GitHub
commit 7cf32af12f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 7 additions and 12 deletions

View File

@ -1,4 +1,4 @@
{ lib, stdenv, mkDerivation, fetchFromGitHub, cmake, doxygen, makeWrapper { lib, mkDerivation, fetchFromGitHub, cmake, doxygen, makeWrapper
, msgpack, neovim, pythonPackages, qtbase }: , msgpack, neovim, pythonPackages, qtbase }:
mkDerivation rec { mkDerivation rec {

View File

@ -1,6 +1,4 @@
{ stdenv, symlinkJoin, lib, makeWrapper { symlinkJoin, lib, makeWrapper, writeText }:
, writeText
}:
helm: helm:

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl }: { lib, fetchurl }:
rec { rec {
version = "3.2.3"; version = "3.2.3";

View File

@ -15,7 +15,7 @@ assert enableXXHash -> xxHash != null;
assert enableZstd -> zstd != null; assert enableZstd -> zstd != null;
let let
base = import ./base.nix { inherit lib stdenv fetchurl; }; base = import ./base.nix { inherit lib fetchurl; };
in in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "rsync-${base.version}"; name = "rsync-${base.version}";

View File

@ -1,7 +1,7 @@
{ lib, stdenv, fetchurl, perl, rsync }: { lib, stdenv, fetchurl, perl, rsync }:
let let
base = import ./base.nix { inherit stdenv lib fetchurl; }; base = import ./base.nix { inherit lib fetchurl; };
in in
stdenv.mkDerivation { stdenv.mkDerivation {
name = "rrsync-${base.version}"; name = "rrsync-${base.version}";

View File

@ -1,5 +1,4 @@
{ lib { lib
, stdenv
, mkDerivation , mkDerivation
, fetchFromGitHub , fetchFromGitHub
, cmake , cmake

View File

@ -1,5 +1,4 @@
{ lib { lib
, stdenv
, brotli , brotli
, buildPythonPackage , buildPythonPackage
, certifi , certifi

View File

@ -1,5 +1,4 @@
{ lib { lib
, stdenv
, brotli , brotli
, buildPythonPackage , buildPythonPackage
, certifi , certifi

View File

@ -1,4 +1,4 @@
{ stdenv, lib, fetchFromGitHub, makeWrapper, python3Packages }: { lib, fetchFromGitHub, makeWrapper, python3Packages }:
python3Packages.buildPythonApplication rec { python3Packages.buildPythonApplication rec {
pname = "xkeysnail"; pname = "xkeysnail";

View File

@ -1,4 +1,4 @@
{ lib, stdenv, skawarePackages { lib, skawarePackages
# Whether to build the TLS/SSL tools and what library to use # Whether to build the TLS/SSL tools and what library to use
# acceptable values: "bearssl", "libressl", false # acceptable values: "bearssl", "libressl", false