pkgs/development: stdenv.lib -> lib
this takes care of the following folders in pkgs/development: * arduino * chez-modules * go-packages * guile-modules * idris-modules * perl-modules * r-modules * ruby-modules
This commit is contained in:
parent
979e6e67d3
commit
cf2a67fef3
|
@ -2,7 +2,7 @@
|
|||
|
||||
let
|
||||
|
||||
runtimePath = stdenv.lib.makeBinPath [
|
||||
runtimePath = lib.makeBinPath [
|
||||
arduino-cli
|
||||
python3 # required by the esp8266 core
|
||||
];
|
||||
|
|
|
@ -21,7 +21,7 @@ let
|
|||
|
||||
buildFlagsArray = [
|
||||
"-ldflags=-s -w -X github.com/arduino/arduino-cli/version.versionString=${version} -X github.com/arduino/arduino-cli/version.commit=unknown"
|
||||
] ++ stdenv.lib.optionals stdenv.isLinux [ "-extldflags '-static'" ];
|
||||
] ++ lib.optionals stdenv.isLinux [ "-extldflags '-static'" ];
|
||||
|
||||
meta = with lib; {
|
||||
inherit (src.meta) homepage;
|
||||
|
|
|
@ -47,7 +47,7 @@ let
|
|||
;
|
||||
# abiVersion 6 is default, but we need 5 for `avrdude_bin` executable
|
||||
ncurses5 = ncurses.override { abiVersion = "5"; };
|
||||
teensy_libpath = stdenv.lib.makeLibraryPath [
|
||||
teensy_libpath = lib.makeLibraryPath [
|
||||
atk
|
||||
cairo
|
||||
expat
|
||||
|
@ -76,7 +76,7 @@ let
|
|||
else throw "${stdenv.hostPlatform.system} is not supported in teensy";
|
||||
|
||||
flavor = (if withTeensyduino then "teensyduino" else "arduino")
|
||||
+ stdenv.lib.optionalString (!withGui) "-core";
|
||||
+ lib.optionalString (!withGui) "-core";
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
version = "1.8.13";
|
||||
|
@ -125,7 +125,7 @@ stdenv.mkDerivation rec {
|
|||
zlib
|
||||
ncurses5
|
||||
readline
|
||||
] ++ stdenv.lib.optionals withTeensyduino [ upx ];
|
||||
] ++ lib.optionals withTeensyduino [ upx ];
|
||||
downloadSrcList = builtins.attrValues externalDownloads;
|
||||
downloadDstList = builtins.attrNames externalDownloads;
|
||||
|
||||
|
@ -165,7 +165,7 @@ stdenv.mkDerivation rec {
|
|||
cp -r ./build/linux/work/* "$out/share/arduino/"
|
||||
echo -n ${version} > $out/share/arduino/lib/version.txt
|
||||
|
||||
${stdenv.lib.optionalString withGui ''
|
||||
${lib.optionalString withGui ''
|
||||
mkdir -p $out/bin
|
||||
substituteInPlace $out/share/arduino/arduino \
|
||||
--replace "JAVA=java" "JAVA=$javaPath/java" \
|
||||
|
@ -180,7 +180,7 @@ stdenv.mkDerivation rec {
|
|||
--replace '<ICON_NAME>' "$out/share/arduino/icons/128x128/apps/arduino.png"
|
||||
''}
|
||||
|
||||
${stdenv.lib.optionalString withTeensyduino ''
|
||||
${lib.optionalString withTeensyduino ''
|
||||
# Back up the original jars
|
||||
mv $out/share/arduino/lib/arduino-core.jar $out/share/arduino/lib/arduino-core.jar.bak
|
||||
mv $out/share/arduino/lib/pde.jar $out/share/arduino/lib/pde.jar.bak
|
||||
|
@ -235,7 +235,7 @@ stdenv.mkDerivation rec {
|
|||
mkdir $out/lib/
|
||||
ln -s ${lib.makeLibraryPath [ ncurses5 ]}/libtinfo.so.5 $out/lib/libtinfo.so.5
|
||||
|
||||
${stdenv.lib.optionalString withTeensyduino ''
|
||||
${lib.optionalString withTeensyduino ''
|
||||
# Patch the Teensy loader binary
|
||||
patchelf --debug \
|
||||
--set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitHub, python3Packages, installShellFiles }:
|
||||
{ stdenv, lib, fetchFromGitHub, python3Packages, installShellFiles }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "1.6.0";
|
||||
|
@ -22,12 +22,11 @@ stdenv.mkDerivation rec {
|
|||
wrapPythonPrograms
|
||||
'';
|
||||
|
||||
meta = {
|
||||
meta = with lib; {
|
||||
description = "Makefile for Arduino sketches";
|
||||
homepage = "https://github.com/sudar/Arduino-Makefile";
|
||||
license = stdenv.lib.licenses.lgpl21;
|
||||
maintainers = [ stdenv.lib.maintainers.eyjhb ];
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
license = licenses.lgpl21;
|
||||
maintainers = [ maintainers.eyjhb ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchurl, python2Packages, picocom
|
||||
{ stdenv, lib, fetchurl, python2Packages, picocom
|
||||
, avrdude, arduino-core }:
|
||||
|
||||
python2Packages.buildPythonApplication rec {
|
||||
|
@ -36,11 +36,11 @@ python2Packages.buildPythonApplication rec {
|
|||
--replace "'-C', self.e['avrdude.conf']," ""
|
||||
'';
|
||||
|
||||
meta = {
|
||||
meta = with lib; {
|
||||
description = "Command line toolkit for working with Arduino hardware";
|
||||
homepage = "http://inotool.org/";
|
||||
license = stdenv.lib.licenses.mit;
|
||||
maintainers = with stdenv.lib.maintainers; [ antono ];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ antono ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitHub, chez }:
|
||||
{ stdenv, lib, fetchFromGitHub, chez }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "chez-matchable";
|
||||
|
@ -23,11 +23,11 @@ stdenv.mkDerivation rec {
|
|||
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
meta = with lib; {
|
||||
description = "This is a Library for ChezScheme providing the protable hygenic pattern matcher by Alex Shinn";
|
||||
homepage = "https://github.com/fedeinthemix/chez-matchable/";
|
||||
maintainers = [ stdenv.lib.maintainers.jitwit ];
|
||||
license = stdenv.lib.licenses.publicDomain;
|
||||
maintainers = [ maintainers.jitwit ];
|
||||
license = licenses.publicDomain;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchgit, chez, chez-srfi }:
|
||||
{ stdenv, lib, fetchgit, chez, chez-srfi }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "chez-mit";
|
||||
|
@ -22,11 +22,11 @@ stdenv.mkDerivation {
|
|||
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
meta = with lib; {
|
||||
description = "This is a MIT/GNU Scheme compatibility library for Chez Scheme";
|
||||
homepage = "https://github.com/fedeinthemix/chez-mit/";
|
||||
maintainers = [ stdenv.lib.maintainers.jitwit ];
|
||||
license = stdenv.lib.licenses.free;
|
||||
maintainers = [ maintainers.jitwit ];
|
||||
license = licenses.free;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchgit, chez, chez-srfi, chez-mit }:
|
||||
{ stdenv, lib, fetchgit, chez, chez-srfi, chez-mit }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "chez-scmutils";
|
||||
|
@ -22,11 +22,11 @@ stdenv.mkDerivation {
|
|||
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
meta = with lib; {
|
||||
description = "This is a port of the ‘MIT Scmutils’ library to Chez Scheme";
|
||||
homepage = "https://github.com/fedeinthemix/chez-scmutils/";
|
||||
maintainers = [ stdenv.lib.maintainers.jitwit ];
|
||||
license = stdenv.lib.licenses.gpl3;
|
||||
maintainers = [ maintainers.jitwit ];
|
||||
license = licenses.gpl3;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchgit, chez }:
|
||||
{ stdenv, lib, fetchgit, chez }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "chez-srfi";
|
||||
|
@ -22,11 +22,11 @@ stdenv.mkDerivation {
|
|||
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
meta = with lib; {
|
||||
description = "This package provides a collection of SRFI libraries for Chez Scheme";
|
||||
homepage = "https://github.com/fedeinthemix/chez-srfi/";
|
||||
maintainers = [ stdenv.lib.maintainers.jitwit ];
|
||||
license = stdenv.lib.licenses.free;
|
||||
maintainers = [ maintainers.jitwit ];
|
||||
license = licenses.free;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
|
@ -83,7 +83,7 @@ let
|
|||
GO111MODULE = "off";
|
||||
GOFLAGS = lib.optionals (!allowGoReference) [ "-trimpath" ];
|
||||
|
||||
GOARM = toString (stdenv.lib.intersectLists [(stdenv.hostPlatform.parsed.cpu.version or "")] ["5" "6" "7"]);
|
||||
GOARM = toString (lib.intersectLists [(stdenv.hostPlatform.parsed.cpu.version or "")] ["5" "6" "7"]);
|
||||
|
||||
configurePhase = args.configurePhase or ''
|
||||
runHook preConfigure
|
||||
|
|
|
@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
|
|||
buildInputs = [
|
||||
texinfo guile gwrap pkgconfig gconf glib gnome_vfs gtk2
|
||||
libglade libgnome libgnomecanvas libgnomeui pango guile-cairo
|
||||
] ++ stdenv.lib.optional doCheck guile-lib;
|
||||
] ++ lib.optional doCheck guile-lib;
|
||||
|
||||
# The test suite tries to open an X display, which fails.
|
||||
doCheck = false;
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
{ lib, stdenv, fetchurl, fetchpatch, pkgconfig
|
||||
, gperf, guile, guile-lib, libffi }:
|
||||
|
||||
with stdenv.lib;
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
pname = "guile-reader";
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
# Build a version of idris with a set of packages visible
|
||||
# packages: The packages visible to idris
|
||||
{ stdenv, idris, symlinkJoin, makeWrapper }: packages:
|
||||
{ stdenv, lib, idris, symlinkJoin, makeWrapper }: packages:
|
||||
|
||||
let paths = stdenv.lib.closePropagation packages;
|
||||
let paths = lib.closePropagation packages;
|
||||
in
|
||||
stdenv.lib.appendToName "with-packages" (symlinkJoin {
|
||||
lib.appendToName "with-packages" (symlinkJoin {
|
||||
|
||||
inherit (idris) name;
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitHub, buildPerlPackage, shortenPerlShebang, LWP, LWPProtocolHttps, DataDump, JSON }:
|
||||
{ stdenv, lib, fetchFromGitHub, buildPerlPackage, shortenPerlShebang, LWP, LWPProtocolHttps, DataDump, JSON }:
|
||||
|
||||
buildPerlPackage rec {
|
||||
pname = "WWW-YoutubeViewer";
|
||||
|
@ -11,21 +11,21 @@ buildPerlPackage rec {
|
|||
sha256 = "16p0sa91h0zpqdpqmy348g6b9qj5f6qrbzrljn157vk00cg6mx18";
|
||||
};
|
||||
|
||||
nativeBuildInputs = stdenv.lib.optional stdenv.isDarwin shortenPerlShebang;
|
||||
nativeBuildInputs = lib.optional stdenv.isDarwin shortenPerlShebang;
|
||||
propagatedBuildInputs = [
|
||||
LWP
|
||||
LWPProtocolHttps
|
||||
DataDump
|
||||
JSON
|
||||
];
|
||||
postInstall = stdenv.lib.optionalString stdenv.isDarwin ''
|
||||
postInstall = lib.optionalString stdenv.isDarwin ''
|
||||
shortenPerlShebang $out/bin/youtube-viewer
|
||||
'';
|
||||
|
||||
meta = {
|
||||
meta = with lib; {
|
||||
description = "A lightweight application for searching and streaming videos from YouTube";
|
||||
homepage = "https://github.com/trizen/youtube-viewer";
|
||||
maintainers = with stdenv.lib.maintainers; [ woffs ];
|
||||
license = with stdenv.lib.licenses; [ artistic2 ];
|
||||
maintainers = with maintainers; [ woffs ];
|
||||
license = with licenses; [ artistic2 ];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{buildPerlPackage, stdenv, fetchurl, DBDmysql}:
|
||||
{buildPerlPackage, lib, stdenv, fetchurl, DBDmysql}:
|
||||
|
||||
buildPerlPackage {
|
||||
pname = "maatkit";
|
||||
|
@ -27,7 +27,7 @@ buildPerlPackage {
|
|||
done
|
||||
'' ;
|
||||
|
||||
meta = {
|
||||
meta = with lib; {
|
||||
description = "Database toolkit";
|
||||
longDescription = ''
|
||||
You can use Maatkit to prove replication is working correctly, fix
|
||||
|
@ -37,7 +37,7 @@ buildPerlPackage {
|
|||
In addition to MySQL, there is support for PostgreSQL, Memcached, and a
|
||||
growing variety of other databases and technologies.
|
||||
'';
|
||||
license = stdenv.lib.licenses.gpl2Plus;
|
||||
license = licenses.gpl2Plus;
|
||||
homepage = "http://www.maatkit.org/";
|
||||
};
|
||||
}
|
||||
|
|
|
@ -17,7 +17,7 @@ buildPerlPackage rec {
|
|||
# stray test failure
|
||||
doCheck = false;
|
||||
|
||||
nativeBuildInputs = stdenv.lib.optionals stdenv.isDarwin [ shortenPerlShebang ];
|
||||
nativeBuildInputs = lib.optionals stdenv.isDarwin [ shortenPerlShebang ];
|
||||
buildInputs = [ ArchiveZip ArchiveCpio file ];
|
||||
|
||||
perlPostHook = ''
|
||||
|
@ -26,7 +26,7 @@ buildPerlPackage rec {
|
|||
rm $out/share/man/man1/dh_strip_nondeterminism.1.gz
|
||||
'';
|
||||
|
||||
postInstall = stdenv.lib.optionalString stdenv.isDarwin ''
|
||||
postInstall = lib.optionalString stdenv.isDarwin ''
|
||||
shortenPerlShebang $out/bin/strip-nondeterminism
|
||||
'';
|
||||
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
{ stdenv, R, libcxx, xvfb_run, util-linux, Cocoa, Foundation, gettext, gfortran }:
|
||||
{ stdenv, lib, R, libcxx, xvfb_run, util-linux, Cocoa, Foundation, gettext, gfortran }:
|
||||
|
||||
{ name, buildInputs ? [], requireX ? false, ... } @ attrs:
|
||||
|
||||
stdenv.mkDerivation ({
|
||||
buildInputs = buildInputs ++ [R gettext] ++
|
||||
stdenv.lib.optionals requireX [util-linux xvfb_run] ++
|
||||
stdenv.lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran];
|
||||
lib.optionals requireX [util-linux xvfb_run] ++
|
||||
lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran];
|
||||
|
||||
NIX_CFLAGS_COMPILE =
|
||||
stdenv.lib.optionalString stdenv.isDarwin "-I${libcxx}/include/c++/v1";
|
||||
lib.optionalString stdenv.isDarwin "-I${libcxx}/include/c++/v1";
|
||||
|
||||
configurePhase = ''
|
||||
runHook preConfigure
|
||||
|
|
|
@ -265,7 +265,7 @@ in
|
|||
|
||||
hitimes = attrs: {
|
||||
buildInputs =
|
||||
stdenv.lib.optionals stdenv.isDarwin
|
||||
lib.optionals stdenv.isDarwin
|
||||
[ darwin.apple_sdk.frameworks.CoreServices ];
|
||||
};
|
||||
|
||||
|
@ -514,7 +514,7 @@ in
|
|||
--replace "gobject-2.0" "${glib.out}/lib/libgobject-2.0${stdenv.hostPlatform.extensions.sharedLibrary}"
|
||||
|
||||
substituteInPlace lib/vips.rb \
|
||||
--replace "vips_libname = 'vips'" "vips_libname = '${stdenv.lib.getLib vips}/lib/libvips${stdenv.hostPlatform.extensions.sharedLibrary}'"
|
||||
--replace "vips_libname = 'vips'" "vips_libname = '${lib.getLib vips}/lib/libvips${stdenv.hostPlatform.extensions.sharedLibrary}'"
|
||||
'';
|
||||
};
|
||||
|
||||
|
@ -631,7 +631,7 @@ in
|
|||
};
|
||||
|
||||
zookeeper = attrs: {
|
||||
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ darwin.cctools ];
|
||||
buildInputs = lib.optionals stdenv.isDarwin [ darwin.cctools ];
|
||||
dontBuild = false;
|
||||
postPatch = ''
|
||||
sed -i ext/extconf.rb -e "4a \
|
||||
|
|
Loading…
Reference in New Issue