treewide: remove stdenv from buildInputs
This commit is contained in:
parent
cd6ae307c5
commit
61776f460f
10 changed files with 9 additions and 10 deletions
|
@ -175,7 +175,6 @@ self: super: {
|
|||
cpsm = super.cpsm.overrideAttrs (old: {
|
||||
buildInputs = [
|
||||
python3
|
||||
stdenv
|
||||
cmake
|
||||
boost
|
||||
icu
|
||||
|
|
|
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
|
|||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ stdenv openexr libpng12 libjpeg ];
|
||||
buildInputs = [ openexr libpng12 libjpeg ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Collection of utilities for manipulating OpenEXR images";
|
||||
|
|
|
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
|
|||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ stdenv gtk2 ];
|
||||
buildInputs = [ gtk2 ];
|
||||
|
||||
preferLocalBuild = true;
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ stdenv.mkDerivation {
|
|||
sha256 = "1yrzjhcwrxrxq5jj695wvpgb0pz047m88yq5n5ymkcw5qr78fy1v";
|
||||
};
|
||||
|
||||
buildInputs = [ stdenv curses ];
|
||||
buildInputs = [ curses ];
|
||||
|
||||
installPhase = ''
|
||||
make install PREFIX=$out
|
||||
|
|
|
@ -15,7 +15,7 @@ mkDerivation rec {
|
|||
|
||||
doCheck = false;
|
||||
|
||||
buildInputs = [ stdenv qtbase qtquickcontrols2 qtgraphicaleffects python3 ];
|
||||
buildInputs = [ qtbase qtquickcontrols2 qtgraphicaleffects python3 ];
|
||||
|
||||
nativeBuildInputs = [ qmake makeWrapper python3.pkgs.wrapPython ];
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@ stdenv.mkDerivation {
|
|||
|
||||
nativeBuildInputs = [ autoconf automake ];
|
||||
buildInputs = [
|
||||
stdenv gcc glibc
|
||||
gcc glibc
|
||||
libtool gnumake
|
||||
file which zsh m4 gtk2 zlib gmp
|
||||
gnome2.libgnomecanvas pango sqlite
|
||||
|
|
|
@ -5,7 +5,7 @@ self = rec {
|
|||
name = "ql-to-nix";
|
||||
env = buildEnv { name = name; paths = buildInputs; };
|
||||
buildInputs = [
|
||||
gcc stdenv
|
||||
gcc
|
||||
openssl fuse libuv libmysqlclient libfixposix libev sqlite
|
||||
freetds
|
||||
lispPackages.quicklisp-to-nix lispPackages.quicklisp-to-nix-system-info
|
||||
|
|
|
@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
nativeBuildInputs = [ cmake pkg-config ];
|
||||
|
||||
buildInputs = [ libgcrypt yajl curl expat stdenv boost libiberty ];
|
||||
buildInputs = [ libgcrypt yajl curl expat boost libiberty ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A console Google Drive client";
|
||||
|
|
|
@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
|||
--replace 'LDFLAGS = -s -N' '#LDFLAGS = -s -N'
|
||||
'';
|
||||
|
||||
buildInputs = [ ncurses glibc stdenv ];
|
||||
buildInputs = [ ncurses glibc ];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
|
|
|
@ -14,7 +14,7 @@ stdenv.mkDerivation (rec {
|
|||
url = "https://sources.archlinux.org/other/community/xe-guest-utilities/xe-guest-utilities_${version}-1120.tar.gz";
|
||||
sha256 = "f9593cd9588188f80253e736f48d8dd94c5b517abb18316085f86acffab48794";
|
||||
};
|
||||
buildInputs = [ bzip2 gnutar gnused python2 lzo zlib xz stdenv gnugrep which ];
|
||||
buildInputs = [ bzip2 gnutar gnused python2 lzo zlib xz gnugrep which ];
|
||||
patches = [ ./ip-address.patch ];
|
||||
postPatch = ''
|
||||
tar xf "$NIX_BUILD_TOP/$name/xenstore-sources.tar.bz2"
|
||||
|
|
Loading…
Reference in a new issue