treewide: with stdenv.lib; in meta -> with lib;
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
{stdenv, fetchurl}:
|
||||
{lib, stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "915resolution-0.5.3";
|
||||
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
|
||||
patchPhase = "rm *.o";
|
||||
installPhase = "mkdir -p $out/sbin; cp 915resolution $out/sbin/";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "http://915resolution.mango-lang.org/";
|
||||
description = "A tool to modify Intel 800/900 video BIOS";
|
||||
platforms = [ "i686-linux" "x86_64-linux" ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, kernel }:
|
||||
{ lib, stdenv, fetchFromGitHub, kernel }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "acpi-call";
|
||||
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
|
||||
install -D -m755 examples/turn_off_gpu.sh $out/bin/test_discrete_video_off.sh
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
maintainers = with maintainers; [ raskin mic92 ];
|
||||
inherit (src.meta) homepage;
|
||||
platforms = platforms.linux;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl }:
|
||||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "acpi";
|
||||
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "01ahldvf0gc29dmbd5zi4rrnrw2i1ajnf30sx2vyaski3jv099fp";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Show battery status and other ACPI information";
|
||||
longDescription = ''
|
||||
Linux ACPI client is a small command-line
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, autoreconfHook }:
|
||||
{ lib, stdenv, fetchurl, autoreconfHook }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "acpid-2.0.32";
|
||||
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
||||
--replace "strrchr strtol" "strrchr strtol malloc realloc"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://sourceforge.net/projects/acpid2/";
|
||||
description = "A daemon for delivering ACPI events to userspace programs";
|
||||
license = licenses.gpl2Plus;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, alsa-ucm-conf, alsa-topology-conf }:
|
||||
{ lib, stdenv, fetchurl, alsa-ucm-conf, alsa-topology-conf }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "alsa-lib";
|
||||
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
outputs = [ "out" "dev" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "http://www.alsa-project.org/";
|
||||
description = "ALSA, the Advanced Linux Sound Architecture libraries";
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{stdenv, fetchurl, alsaLib, gettext, ncurses, libsamplerate}:
|
||||
{lib, stdenv, fetchurl, alsaLib, gettext, ncurses, libsamplerate}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "alsa-oss";
|
||||
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
installFlags = [ "ASOUND_STATE_DIR=$(TMPDIR)/dummy" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "http://www.alsa-project.org/";
|
||||
description = "ALSA, the Advanced Linux Sound Architecture alsa-oss emulation";
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, alsaLib, pkgconfig, gtk2, gtk3, fltk13 }:
|
||||
{ lib, stdenv, fetchurl, alsaLib, pkgconfig, gtk2, gtk3, fltk13 }:
|
||||
# Comes from upstream as as bundle of several tools,
|
||||
# some use gtk2, some gtk3 (and some even fltk13).
|
||||
|
||||
@@ -38,7 +38,7 @@ stdenv.mkDerivation rec {
|
||||
done
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "http://www.alsa-project.org/";
|
||||
description = "ALSA, the Advanced Linux Sound Architecture tools";
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl }:
|
||||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "alsa-topology-conf-${version}";
|
||||
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://www.alsa-project.org/";
|
||||
description = "ALSA topology configuration files";
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl }:
|
||||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "alsa-ucm-conf-${version}";
|
||||
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://www.alsa-project.org/";
|
||||
description = "ALSA Use Case Manager configuration";
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{stdenv, fetchurl, alsaLib, gettext, makeWrapper, ncurses, libsamplerate, pciutils, which, fftw}:
|
||||
{lib, stdenv, fetchurl, alsaLib, gettext, makeWrapper, ncurses, libsamplerate, pciutils, which, fftw}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "alsa-utils";
|
||||
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
||||
wrapProgram $out/bin/alsa-info.sh --prefix PATH : "${stdenv.lib.makeBinPath [ which pciutils ]}"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "http://www.alsa-project.org/";
|
||||
description = "ALSA, the Advanced Linux Sound Architecture utils";
|
||||
longDescription = ''
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, elfutils
|
||||
{ lib, stdenv, fetchurl, elfutils
|
||||
, xorg, patchelf, openssl, libdrm, udev
|
||||
, libxcb, libxshmfence, epoxy, perl, zlib
|
||||
, ncurses
|
||||
@@ -171,7 +171,7 @@ in stdenv.mkDerivation rec {
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "AMDGPU-PRO drivers";
|
||||
homepage = "http://support.amd.com/en-us/kb-articles/Pages/AMDGPU-PRO-Beta-Driver-for-Vulkan-Release-Notes.aspx";
|
||||
license = licenses.unfree;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, fetchurl
|
||||
{ lib, stdenv, fetchFromGitHub, fetchurl
|
||||
, cmake, pkg-config, dbus, makeWrapper
|
||||
, boost
|
||||
, elfutils # for libdw
|
||||
@@ -148,7 +148,7 @@ stdenv.mkDerivation rec {
|
||||
};
|
||||
}.${stdenv.system} or null;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://anbox.io";
|
||||
description = "Android in a box";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, kernel, fetchFromGitHub }:
|
||||
{ lib, stdenv, kernel, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "anbox-modules";
|
||||
@@ -31,7 +31,7 @@ stdenv.mkDerivation {
|
||||
done
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Anbox ashmem and binder drivers.";
|
||||
homepage = "https://github.com/anbox/anbox-modules";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub }:
|
||||
{ lib, stdenv, fetchFromGitHub }:
|
||||
|
||||
## Usage
|
||||
# In NixOS, simply add this package to services.udev.packages:
|
||||
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
|
||||
install -D 51-android.rules $out/lib/udev/rules.d/51-android.rules
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/M0Rf30/android-udev-rules";
|
||||
description = "Android udev rules list aimed to be the most comprehensive on the net";
|
||||
platforms = platforms.linux;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, kernel }:
|
||||
{ lib, stdenv, fetchFromGitHub, kernel }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "asus-wmi-sensors-${version}-${kernel.version}";
|
||||
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
|
||||
"MODDESTDIR=${placeholder "out"}/lib/modules/${kernel.modDirVersion}/kernel/drivers/hwmon"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Linux HWMON (lmsensors) sensors driver for various ASUS Ryzen and Threadripper motherboards";
|
||||
homepage = "https://github.com/electrified/asus-wmi-sensors";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -126,7 +126,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "ATI Catalyst display drivers";
|
||||
homepage = "http://support.amd.com/us/gpudownload/Pages/index.aspx";
|
||||
license = licenses.unfree;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{stdenv, fetchurl, zlib, ncurses}:
|
||||
{lib, stdenv, fetchurl, zlib, ncurses}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "atop";
|
||||
@@ -35,7 +35,7 @@ stdenv.mkDerivation rec {
|
||||
mkdir -p "$out"/{bin,sbin}
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ raskin ];
|
||||
description = ''Console system performance monitor'';
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, fetchpatch, kernel, runtimeShell }:
|
||||
{ lib, stdenv, fetchurl, fetchpatch, kernel, runtimeShell }:
|
||||
|
||||
let
|
||||
baseName = "bbswitch";
|
||||
@@ -54,7 +54,7 @@ stdenv.mkDerivation {
|
||||
chmod +x $out/bin/discrete_vga_poweroff $out/bin/discrete_vga_poweron
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A module for powering off hybrid GPUs";
|
||||
platforms = [ "x86_64-linux" "i686-linux" ];
|
||||
homepage = "https://github.com/Bumblebee-Project/bbswitch";
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, fetchpatch
|
||||
{ lib, stdenv, fetchurl, fetchpatch
|
||||
, makeWrapper, cmake, llvmPackages, kernel
|
||||
, flex, bison, elfutils, python, luajit, netperf, iperf, libelf
|
||||
, systemtap, bash
|
||||
@@ -68,7 +68,7 @@ python.pkgs.buildPythonApplication rec {
|
||||
wrapPythonProgramsIn "$out/share/bcc/tools" "$out $pythonPath"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Dynamic Tracing Tools for Linux";
|
||||
homepage = "https://iovisor.github.io/bcc/";
|
||||
license = licenses.asl20;
|
||||
|
||||
@@ -112,7 +112,7 @@ in stdenv.mkDerivation rec {
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Bluetooth support for Linux";
|
||||
homepage = "http://www.bluez.org/";
|
||||
license = with licenses; [ gpl2 lgpl21 ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv
|
||||
{ lib, stdenv
|
||||
, meson
|
||||
, ninja
|
||||
, pkgconfig
|
||||
@@ -85,7 +85,7 @@ stdenv.mkDerivation rec {
|
||||
PKG_CONFIG_SYSTEMD_SYSTEMDSYSTEMUNITDIR = "${placeholder "out"}/lib/systemd/system";
|
||||
PKG_CONFIG_UDEV_UDEVDIR = "${placeholder "out"}/lib/udev";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Thunderbolt 3 device management daemon";
|
||||
homepage = "https://gitlab.freedesktop.org/bolt/bolt";
|
||||
license = licenses.lgpl21Plus;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv
|
||||
{ lib, stdenv
|
||||
, libopcodes, libbfd, libelf
|
||||
, linuxPackages_latest, zlib
|
||||
, python3
|
||||
@@ -21,7 +21,7 @@ stdenv.mkDerivation {
|
||||
--replace '/sbin' '/bin'
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Debugging/program analysis tool for the eBPF subsystem";
|
||||
license = [ licenses.gpl2 licenses.bsd2 ];
|
||||
platforms = platforms.linux;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub
|
||||
{ lib, stdenv, fetchFromGitHub
|
||||
, cmake, pkgconfig, flex, bison
|
||||
, llvmPackages, kernel, elfutils
|
||||
, libelf, libbfd, libbpf, libopcodes, bcc
|
||||
@@ -52,7 +52,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
outputs = [ "out" "man" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "High-level tracing language for Linux eBPF";
|
||||
homepage = "https://github.com/iovisor/bpftrace";
|
||||
license = licenses.asl20;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitLab , go-md2man, coreutils, substituteAll }:
|
||||
{ lib, stdenv, fetchFromGitLab , go-md2man, coreutils, substituteAll }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "brillo";
|
||||
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
installTargets = [ "install-dist" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Backlight and Keyboard LED control tool";
|
||||
homepage = "https://gitlab.com/cameronnemo/brillo";
|
||||
license = [ licenses.gpl3 licenses.bsd0 ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
|
||||
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
|
||||
, python3, boost, fuse, libtorrent-rasterbar, curl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
||||
boost fuse libtorrent-rasterbar curl python3
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A bittorrent filesystem based on FUSE";
|
||||
homepage = "https://github.com/johang/btfs";
|
||||
license = licenses.gpl3;
|
||||
|
||||
@@ -129,7 +129,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
doCheck = false; # tries to access the net
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Tiny versions of common UNIX utilities in a single small executable";
|
||||
homepage = "https://busybox.net/";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl }:
|
||||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "cachefilesd";
|
||||
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
|
||||
"MANDIR=$(out)/share/man"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Local network file caching management daemon";
|
||||
homepage = "https://people.redhat.com/dhowells/fscache/";
|
||||
license = licenses.gpl2Plus;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, kernel, fetchFromGitHub }:
|
||||
{ lib, stdenv, kernel, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "can-isotp";
|
||||
@@ -26,7 +26,7 @@ stdenv.mkDerivation {
|
||||
|
||||
nativeBuildInputs = kernel.moduleBuildDependencies;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Kernel module for ISO-TP (ISO 15765-2)";
|
||||
homepage = "https://github.com/hartkopp/can-isotp";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub }:
|
||||
{ lib, stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "can-utils";
|
||||
@@ -21,7 +21,7 @@ stdenv.mkDerivation {
|
||||
|
||||
preConfigure = ''makeFlagsArray+=(PREFIX="$out")'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "CAN userspace utilities and tools (for use with Linux SocketCAN)";
|
||||
homepage = "https://github.com/linux-can/can-utils";
|
||||
license = licenses.gpl2Plus;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, makeWrapper, file, findutils
|
||||
{ lib, stdenv, fetchFromGitHub, makeWrapper, file, findutils
|
||||
, binutils-unwrapped, glibc, coreutils, sysctl, openssl
|
||||
}:
|
||||
|
||||
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
|
||||
--prefix PATH : ${path}
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A tool for checking security bits on executables";
|
||||
homepage = "http://www.trapkit.de/tools/checksec.html";
|
||||
license = licenses.bsd3;
|
||||
|
||||
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
makeFlags = [ "root_sbindir=$(out)/sbin" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "http://www.samba.org/linux-cifs/cifs-utils/";
|
||||
description = "Tools for managing Linux CIFS client filesystems";
|
||||
platforms = platforms.linux;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, btrfs-progs }:
|
||||
{ lib, stdenv, fetchFromGitHub, btrfs-progs }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "compsize";
|
||||
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
||||
install -m 0444 compsize.8 $out/share/man/man8
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "btrfs: Find compression type/ratio on a file or set of files";
|
||||
homepage = "https://github.com/kilobyte/compsize";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ config, stdenv, fetchFromGitHub, pkgconfig, cmake
|
||||
{ config, lib, stdenv, fetchFromGitHub, pkgconfig, cmake
|
||||
|
||||
# dependencies
|
||||
, glib, libXinerama
|
||||
@@ -133,7 +133,7 @@ stdenv.mkDerivation rec {
|
||||
# src/conky.cc:137:23: fatal error: defconfig.h: No such file or directory
|
||||
enableParallelBuilding = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "http://conky.sourceforge.net/";
|
||||
description = "Advanced, highly configurable system monitor based on torsmo";
|
||||
maintainers = [ maintainers.guibert ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ fetchurl, stdenv, flex, bison, pkgconfig, libmnl, libnfnetlink
|
||||
{ fetchurl, lib, stdenv, flex, bison, pkgconfig, libmnl, libnfnetlink
|
||||
, libnetfilter_conntrack, libnetfilter_queue, libnetfilter_cttimeout
|
||||
, libnetfilter_cthelper, systemd
|
||||
, libtirpc
|
||||
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
|
||||
];
|
||||
nativeBuildInputs = [ flex bison pkgconfig ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "http://conntrack-tools.netfilter.org/";
|
||||
description = "Connection tracking userspace tools";
|
||||
platforms = platforms.linux;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, SDL }:
|
||||
{ lib, stdenv, fetchurl, SDL }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "linuxconsoletools";
|
||||
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
installFlags = [ "PREFIX=\"\"" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://sourceforge.net/projects/linuxconsole/";
|
||||
description = "A set of tools for joysticks and serial peripherals";
|
||||
license = licenses.gpl2Plus;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, libtool, gettext }:
|
||||
{ lib, stdenv, fetchurl, libtool, gettext }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "cpufrequtils-008";
|
||||
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
buildInputs = [ stdenv.cc.libc.linuxHeaders libtool gettext ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Tools to display or change the CPU governor settings";
|
||||
homepage = "http://ftp.be.debian.org/pub/linux/utils/kernel/cpufreq/cpufrequtils.html";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, buildPackages, kernel, pciutils, gettext }:
|
||||
{ lib, stdenv, buildPackages, kernel, pciutils, gettext }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "cpupower";
|
||||
@@ -35,7 +35,7 @@ stdenv.mkDerivation {
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Tool to examine and tune power saving features";
|
||||
homepage = "https://www.kernel.org/";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv
|
||||
{ lib, stdenv
|
||||
, fetchFromGitHub
|
||||
, fetchpatch
|
||||
, pythonPackages
|
||||
@@ -35,7 +35,7 @@ pythonPackages.buildPythonApplication rec {
|
||||
make
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Python application that forms a wrapper around the standard Linux filesystem calls to make using the cpusets facilities in the Linux kernel easier";
|
||||
homepage = "https://github.com/lpechacek/cpuset";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv
|
||||
{ lib, stdenv
|
||||
, fetchurl
|
||||
, zlib
|
||||
}:
|
||||
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
buildInputs = [ zlib ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Tools to create, check, and extract content of CramFs images";
|
||||
homepage = "https://packages.debian.org/jessie/cramfsprogs";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{stdenv, fetchurl, zlib}:
|
||||
{lib, stdenv, fetchurl, zlib}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "cramfsswap";
|
||||
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
|
||||
install --target $out/bin -D cramfsswap
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Swap endianess of a cram filesystem (cramfs)";
|
||||
homepage = "https://packages.debian.org/sid/utils/cramfsswap";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, fetchpatch, libgcrypt, libnl, pkgconfig, python3Packages, wireless-regdb }:
|
||||
{ lib, stdenv, fetchurl, fetchpatch, libgcrypt, libnl, pkgconfig, python3Packages, wireless-regdb }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "crda";
|
||||
@@ -58,7 +58,7 @@ stdenv.mkDerivation rec {
|
||||
rm $out/include/reglib/keys-gcrypt.h
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Linux wireless Central Regulatory Domain Agent";
|
||||
longDescription = ''
|
||||
CRDA acts as the udev helper for communication between the kernel and
|
||||
|
||||
@@ -43,7 +43,7 @@ stdenv.mkDerivation rec {
|
||||
wrapPythonPrograms
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Userspace checkpoint/restore for Linux";
|
||||
homepage = "https://criu.org";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, docutils, meson, ninja, pkgconfig
|
||||
{ lib, stdenv, fetchFromGitHub, docutils, meson, ninja, pkgconfig
|
||||
, dbus, linuxHeaders, systemd }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Linux D-Bus Message Broker";
|
||||
homepage = "https://github.com/bus1/dbus-broker/wiki";
|
||||
license = licenses.asl20;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitLab, kernel }:
|
||||
{ lib, stdenv, fetchFromGitLab, kernel }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "ddcci-driver";
|
||||
@@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
|
||||
"INCLUDEDIR=$(out)/include"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Kernel module driver for DDC/CI monitors";
|
||||
homepage = "https://gitlab.com/ddcci-driver-linux/ddcci-driver-linux";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl }:
|
||||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "devmem2-2004-08-05";
|
||||
@@ -18,7 +18,7 @@ stdenv.mkDerivation {
|
||||
install -D devmem2 "$out/bin/devmem2"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Simple program to read/write from/to any location in memory";
|
||||
homepage = "http://lartmaker.nl/lartware/port/";
|
||||
license = licenses.gpl2Plus;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, fetchpatch, kernel }:
|
||||
{ lib, stdenv, fetchFromGitHub, fetchpatch, kernel }:
|
||||
|
||||
assert stdenv.lib.versionAtLeast kernel.version "3.5";
|
||||
|
||||
@@ -44,7 +44,7 @@ stdenv.mkDerivation rec {
|
||||
"DESTDIR=${placeholder "out"}"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "DIGImend graphics tablet drivers for the Linux kernel";
|
||||
homepage = "https://digimend.github.io/";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, directfb, zlib, libjpeg, xorgproto }:
|
||||
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, directfb, zlib, libjpeg, xorgproto }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "directvnc";
|
||||
@@ -15,7 +15,7 @@ stdenv.mkDerivation {
|
||||
|
||||
buildInputs = [ directfb zlib libjpeg xorgproto ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "DirectFB VNC client";
|
||||
homepage = "http://drinkmilk.github.io/directvnc/";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -65,7 +65,7 @@ stdenv.mkDerivation rec {
|
||||
dontPatchELF = true;
|
||||
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "DisplayLink DL-5xxx, DL-41xx and DL-3x00 Driver for Linux";
|
||||
maintainers = with maintainers; [ nshalman abbradar peterhoeg eyjhb ];
|
||||
platforms = [ "x86_64-linux" "i686-linux" ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, fetchpatch }:
|
||||
{ lib, stdenv, fetchurl, fetchpatch }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "dmidecode-3.2";
|
||||
@@ -54,7 +54,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
makeFlags = [ "prefix=$(out)" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://www.nongnu.org/dmidecode/";
|
||||
description = "A tool that reads information about your system's hardware from the BIOS according to the SMBIOS/DMI standard";
|
||||
license = licenses.gpl2Plus;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, bash, perl, python }:
|
||||
{ lib, stdenv, fetchFromGitHub, bash, perl, python }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "dmtcp";
|
||||
@@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
|
||||
--replace "os.getenv('USER')" "\"nixbld1\""
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Distributed MultiThreaded Checkpointing";
|
||||
longDescription = ''
|
||||
DMTCP (Distributed MultiThreaded Checkpointing) is a tool to
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, flex, systemd, perl }:
|
||||
{ lib, stdenv, fetchurl, flex, systemd, perl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "drbd-8.4.4";
|
||||
@@ -39,7 +39,7 @@ stdenv.mkDerivation rec {
|
||||
"INITDIR=$(out)/etc/init.d"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "http://www.drbd.org/";
|
||||
description = "Distributed Replicated Block Device, a distributed storage system for Linux";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
|
||||
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
|
||||
, libnl, readline, libbfd, ncurses, zlib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Linux kernel dropped packet monitor";
|
||||
homepage = "https://github.com/nhorman/dropwatch";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, python2Packages }:
|
||||
{ lib, stdenv, fetchurl, python2Packages }:
|
||||
|
||||
python2Packages.buildPythonApplication rec {
|
||||
pname = "dstat";
|
||||
@@ -16,7 +16,7 @@ python2Packages.buildPythonApplication rec {
|
||||
|
||||
makeFlags = [ "prefix=$(out)" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "http://dag.wieers.com/home-made/dstat/";
|
||||
description = "Versatile resource statistics tool";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, pandoc, installShellFiles, withManpage ? false }:
|
||||
{ lib, stdenv, fetchFromGitHub, pandoc, installShellFiles, withManpage ? false }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "earlyoom";
|
||||
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
|
||||
installManPage earlyoom.1
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Early OOM Daemon for Linux";
|
||||
homepage = "https://github.com/rfjakob/earlyoom";
|
||||
license = licenses.mit;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl }:
|
||||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "ebtables";
|
||||
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
preInstall = "mkdir -p $out/etc/sysconfig";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A filtering tool for Linux-based bridging firewalls";
|
||||
homepage = "http://ebtables.sourceforge.net/";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, perl, makeWrapper
|
||||
{ lib, stdenv, fetchFromGitHub, perl, makeWrapper
|
||||
, sysfsutils, dmidecode, kmod }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
@@ -28,7 +28,7 @@ stdenv.mkDerivation {
|
||||
--set PATH ${stdenv.lib.makeBinPath [ dmidecode kmod ]}
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/grondo/edac-utils";
|
||||
description = "Handles the reporting of hardware-related memory errors";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv
|
||||
{ lib, stdenv
|
||||
, fetchgit
|
||||
, autoreconfHook
|
||||
, pkgconfig
|
||||
@@ -35,7 +35,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://01.org/ell";
|
||||
description = "Embedded Linux Library";
|
||||
longDescription = ''
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, kernel }:
|
||||
{ lib, stdenv, fetchFromGitHub, kernel }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "2.3.0";
|
||||
@@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
|
||||
xz $dest/ena.ko
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Amazon Elastic Network Adapter (ENA) driver for Linux";
|
||||
homepage = "https://github.com/amzn/amzn-drivers";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchgit, autoreconfHook, pkgconfig, fuse, libuuid, lz4 }:
|
||||
{ lib, stdenv, fetchgit, autoreconfHook, pkgconfig, fuse, libuuid, lz4 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "erofs-utils";
|
||||
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
configureFlags = [ "--enable-fuse" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Userspace utilities for linux-erofs file system";
|
||||
license = with licenses; [ gpl2 ];
|
||||
maintainers = with maintainers; [ ehmry ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, fetchpatch, kernel, libdrm }:
|
||||
{ lib, stdenv, fetchFromGitHub, fetchpatch, kernel, libdrm }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "evdi";
|
||||
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
|
||||
install -Dm755 library/libevdi.so $out/lib/libevdi.so
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Extensible Virtual Display Interface";
|
||||
maintainers = with maintainers; [ eyjhb ];
|
||||
platforms = platforms.linux;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub }:
|
||||
{ lib, stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "extrace";
|
||||
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
||||
install -m644 LICENSE "$out/share/licenses/extrace/LICENSE"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/leahneukirchen/extrace";
|
||||
description = "Trace exec() calls system-wide";
|
||||
license = with licenses; [ gpl2 bsd2 ];
|
||||
|
||||
@@ -51,7 +51,7 @@ stdenv.mkDerivation rec {
|
||||
"KDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/patjak/bcwc_pcie";
|
||||
description = "Linux driver for the Facetime HD (Broadcom 1570) PCIe webcam";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv
|
||||
{ lib, stdenv
|
||||
, fetchFromGitHub
|
||||
, python3
|
||||
, which
|
||||
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
makeFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Report system-wide file access events";
|
||||
homepage = "https://github.com/martinpitt/fatrace";
|
||||
license = licenses.gpl3Plus;
|
||||
|
||||
@@ -51,7 +51,7 @@ stdenv.mkDerivation {
|
||||
./select.patch
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
inherit (s) version;
|
||||
description = "Framebuffer terminal emulator";
|
||||
homepage = "https://code.google.com/archive/p/fbterm/";
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv
|
||||
{ lib, stdenv
|
||||
, mkDerivation
|
||||
, dbus
|
||||
, dbus_cplusplus
|
||||
@@ -98,7 +98,7 @@ mkDerivation rec {
|
||||
wrapQtApp $bin/bin/ffado-mixer
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "http://www.ffado.org";
|
||||
description = "FireWire audio drivers";
|
||||
license = licenses.gpl3;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, b43FirmwareCutter }:
|
||||
{ lib, stdenv, fetchurl, b43FirmwareCutter }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "b43-firmware";
|
||||
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
||||
b43-fwcutter -w $out *.wl_apsta.o
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Firmware for cards supported by the b43 kernel module";
|
||||
homepage = "http://wireless.kernel.org/en/users/Drivers/b43";
|
||||
downloadPage = "http://www.lwfinger.com/b43-firmware";
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, cabextract, bt-fw-converter }:
|
||||
{ lib, stdenv, fetchurl, cabextract, bt-fw-converter }:
|
||||
|
||||
# Kernels between 4.2 and 4.7 will not work with
|
||||
# this packages as they expect the firmware to be named "BCM.hcd"
|
||||
@@ -36,7 +36,7 @@ stdenv.mkDerivation rec {
|
||||
outputHashAlgo = "sha256";
|
||||
outputHash = "042frb2dmrqfj8q83h5p769q6hg2b3i8fgnyvs9r9a71z7pbsagq";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Firmware for Broadcom WIDCOMM® Bluetooth devices";
|
||||
homepage = "http://www.catalog.update.microsoft.com/Search.aspx?q=Broadcom+bluetooth";
|
||||
license = licenses.unfree;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, makeWrapper, perl, perlPackages, bluez }:
|
||||
{ lib, stdenv, fetchurl, makeWrapper, perl, perlPackages, bluez }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "bt-fw-converter";
|
||||
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
|
||||
wrapProgram $out/bin/bt-fw-converter --set PERL5LIB $PERL5LIB
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/winterheart/broadcom-bt-firmware/";
|
||||
description = "A tool that converts hex to hcd based on inf file";
|
||||
license = licenses.mit;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, cpio, xz, pkgs }:
|
||||
{ lib, stdenv, fetchurl, cpio, xz, pkgs }:
|
||||
|
||||
let
|
||||
|
||||
@@ -54,7 +54,7 @@ stdenv.mkDerivation {
|
||||
gunzip -c ${firmwareOut}.gz > $out/lib/firmware/facetimehd/${firmwareOut}
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "facetimehd firmware";
|
||||
homepage = "https://support.apple.com/kb/DL1877";
|
||||
license = licenses.unfree;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# Updating? Keep $out/etc synchronized with passthru keys
|
||||
|
||||
{ stdenv
|
||||
{ lib, stdenv
|
||||
, fetchurl
|
||||
, fetchFromGitHub
|
||||
, substituteAll
|
||||
@@ -329,7 +329,7 @@ let
|
||||
};
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://fwupd.org/";
|
||||
maintainers = with maintainers; [ jtojnar ];
|
||||
license = licenses.lgpl21Plus;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl }:
|
||||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "openelec-dvb-firmware";
|
||||
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
|
||||
find $out \( -name 'README.*' -or -name 'LICEN[SC]E.*' -or -name '*.txt' \) | xargs rm
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "DVB firmware from OpenELEC";
|
||||
homepage = "https://github.com/OpenELEC/dvb-firmware";
|
||||
license = licenses.unfreeRedistributableFirmware;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub }:
|
||||
{ lib, stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "raspberrypi-wireless-firmware";
|
||||
@@ -43,7 +43,7 @@ stdenv.mkDerivation {
|
||||
outputHashAlgo = "sha256";
|
||||
outputHash = "17k9y499kjc4zv7ivnsfrgfibwj0ldr3sqdgia4dackbr70jfg2h";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Firmware for builtin Wifi/Bluetooth devices in the Raspberry Pi 3+ and Zero W";
|
||||
homepage = "https://github.com/RPi-Distro/firmware-nonfree";
|
||||
license = licenses.unfreeRedistributableFirmware;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, cmake, pkgconfig }:
|
||||
{ lib, stdenv, fetchFromGitHub, cmake, pkgconfig }:
|
||||
|
||||
let
|
||||
inherit (stdenv.lib) optionals;
|
||||
@@ -41,7 +41,7 @@ stdenv.mkDerivation {
|
||||
cp -v *.bin $out/
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Firmware related ARM stubs for the Raspberry Pi";
|
||||
homepage = https://github.com/raspberrypi/tools;
|
||||
license = licenses.bsd3;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchgit }:
|
||||
{ lib, stdenv, fetchgit }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "rt5677-firmware";
|
||||
@@ -15,7 +15,7 @@ stdenv.mkDerivation {
|
||||
cp ./firmware/rt5677_elf_vad $out/lib/firmware
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Firmware for Realtek rt5677 device";
|
||||
license = licenses.unfreeRedistributableFirmware;
|
||||
maintainers = [ maintainers.zohl ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub }:
|
||||
{ lib, stdenv, fetchFromGitHub }:
|
||||
with stdenv.lib;
|
||||
stdenv.mkDerivation {
|
||||
name = "rtl8192su-unstable-2016-10-05";
|
||||
@@ -26,7 +26,7 @@ stdenv.mkDerivation {
|
||||
done
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Firmware for Realtek RTL8188SU/RTL8191SU/RTL8192SU";
|
||||
homepage = "https://github.com/chunkeey/rtl8192su";
|
||||
license = licenses.unfreeRedistributableFirmware;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, linuxPackages }:
|
||||
{ lib, stdenv, linuxPackages }:
|
||||
with stdenv.lib;
|
||||
stdenv.mkDerivation {
|
||||
name = "rtl8723bs-firmware-${linuxPackages.rtl8723bs.version}";
|
||||
@@ -12,7 +12,7 @@ stdenv.mkDerivation {
|
||||
cp rtl8723bs_wowlan.bin "$out/lib/firmware/rtlwifi"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Firmware for RealTek 8723bs";
|
||||
homepage = "https://github.com/hadess/rtl8723bs";
|
||||
license = licenses.unfreeRedistributableFirmware;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub }:
|
||||
{ lib, stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "rtl8761b-firmware";
|
||||
@@ -20,7 +20,7 @@ stdenv.mkDerivation {
|
||||
$out/lib/firmware/rtl_bt/rtl8761b_config.bin
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Firmware for Realtek RTL8761b";
|
||||
license = licenses.unfreeRedistributableFirmware;
|
||||
maintainers = with maintainers; [ edibopp ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub }:
|
||||
{ lib, stdenv, fetchFromGitHub }:
|
||||
|
||||
with stdenv.lib;
|
||||
stdenv.mkDerivation rec {
|
||||
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
||||
ROOT=$out SOF_VERSION=v${version} ./go.sh
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Sound Open Firmware";
|
||||
homepage = "https://www.sofproject.org/";
|
||||
license = with licenses; [ bsd3 isc ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchgit }:
|
||||
{ lib, stdenv, fetchgit }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "flashbench";
|
||||
@@ -17,7 +17,7 @@ stdenv.mkDerivation {
|
||||
install -v -m644 README $out/share/doc/flashbench
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Testing tool for flash based memory devices";
|
||||
homepage = "https://github.com/bradfa/flashbench";
|
||||
platforms = platforms.linux;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, kernel }:
|
||||
{ lib, stdenv, kernel }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
inherit (kernel) version src;
|
||||
@@ -15,7 +15,7 @@ stdenv.mkDerivation {
|
||||
|
||||
makeFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
inherit (kernel.meta) homepage license;
|
||||
|
||||
description = "Free-fall protection for spinning HP/Dell laptop hard drives";
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, buildGoModule, fetchFromGitHub, gnum4, pam, fscrypt-experimental }:
|
||||
{ lib, stdenv, buildGoModule, fetchFromGitHub, gnum4, pam, fscrypt-experimental }:
|
||||
|
||||
# Don't use this for anything important yet!
|
||||
|
||||
@@ -34,7 +34,7 @@ buildGoModule rec {
|
||||
make install
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description =
|
||||
"A high-level tool for the management of Linux filesystem encryption";
|
||||
longDescription = ''
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub }:
|
||||
{ lib, stdenv, fetchFromGitHub }:
|
||||
|
||||
# Don't use this for anything important yet!
|
||||
|
||||
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
makeFlags = [ "DESTDIR=$(out)/bin" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = ''
|
||||
A low-level tool that handles raw keys and manages policies for Linux
|
||||
filesystem encryption
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, ncurses }:
|
||||
{ lib, stdenv, fetchurl, ncurses }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "ftop";
|
||||
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
||||
substituteInPlace configure --replace "curses" "ncurses"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Show progress of open files and file systems";
|
||||
homepage = "https://code.google.com/archive/p/ftop/";
|
||||
license = licenses.gpl3Plus;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{ version, sha256Hash }:
|
||||
|
||||
{ stdenv, fetchFromGitHub, fetchpatch
|
||||
{ lib, stdenv, fetchFromGitHub, fetchpatch
|
||||
, fusePackages, util-linux, gettext
|
||||
, meson, ninja, pkg-config
|
||||
, autoreconfHook
|
||||
@@ -83,7 +83,7 @@ in stdenv.mkDerivation rec {
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Library that allows filesystems to be implemented in user space";
|
||||
longDescription = ''
|
||||
FUSE (Filesystem in Userspace) is an interface for userspace programs to
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchzip, autoreconfHook, pkgconfig, glib, libtool, pcre
|
||||
{ lib, stdenv, fetchzip, autoreconfHook, pkgconfig, glib, libtool, pcre
|
||||
, json_c, flex, bison, dtc, pciutils, dmidecode, iasl, libbsd }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://wiki.ubuntu.com/FirmwareTestSuite";
|
||||
description = "Firmware Test Suite";
|
||||
platforms = platforms.linux;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fwts, kernel }:
|
||||
{ lib, stdenv, fwts, kernel }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "fwts-efi-runtime";
|
||||
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
||||
"INSTALL_MOD_PATH=${placeholder "out"}"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
inherit (fwts.meta) homepage license;
|
||||
description = fwts.meta.description + "(efi-runtime kernel module)";
|
||||
maintainers = with maintainers; [ dtzWill ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{stdenv, fetchurl}:
|
||||
{lib, stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "fxload-2002_04_11";
|
||||
@@ -27,7 +27,7 @@ stdenv.mkDerivation {
|
||||
mkdir -p $out/share/usb
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "http://linux-hotplug.sourceforge.net/?selected=usb";
|
||||
description = "Tool to upload firmware to Cypress EZ-USB microcontrollers";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv
|
||||
{ lib, stdenv
|
||||
, fetchFromGitHub
|
||||
, kernel
|
||||
, kmod
|
||||
@@ -28,7 +28,7 @@ in stdenv.mkDerivation rec {
|
||||
install -D {,$out/${kerneldir}/extra/}gcadapter_oc.ko
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Kernel module for overclocking the Nintendo Wii U/Mayflash GameCube adapter";
|
||||
homepage = "https://github.com/HannesMann/gcadapter-oc-kmod";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv
|
||||
{ lib, stdenv
|
||||
, fetchurl
|
||||
}:
|
||||
|
||||
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
makeFlags = "prefix=${placeholder "out"}";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Firmware loader for Qualcomm Gobi USB chipsets";
|
||||
homepage = "https://www.codon.org.uk/~mjg59/gobi_loader/";
|
||||
license = with licenses; [ gpl2 ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{stdenv, fetchurl, openssl, nettools, iproute, sysctl}:
|
||||
{lib, stdenv, fetchurl, openssl, nettools, iproute, sysctl}:
|
||||
|
||||
let baseName = "gogoclient";
|
||||
version = "1.2";
|
||||
@@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
|
||||
sed -i -e 's/^.*Exec \$route -A.*$/& metric 128/' $out/template/linux.sh
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://ipv6.ernet.in/Tunnel_broker";
|
||||
description = "Client to connect to the Freenet6 IPv6 tunnel broker service";
|
||||
maintainers = [ maintainers.bluescreen303 ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl
|
||||
{ lib, stdenv, fetchurl
|
||||
, bison, flex
|
||||
, pam
|
||||
}:
|
||||
@@ -41,7 +41,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
postInstall = ''rmdir $out/dev'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "grsecurity RBAC administration and policy analysis utility";
|
||||
homepage = "https://grsecurity.net";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{ config
|
||||
, stdenv
|
||||
, lib, stdenv
|
||||
, fetchurl
|
||||
, intltool
|
||||
, pkgconfig
|
||||
@@ -54,7 +54,7 @@ stdenv.mkDerivation rec {
|
||||
gsl
|
||||
libpng
|
||||
sfml
|
||||
]
|
||||
]
|
||||
++ stdenv.lib.optionals (pulseaudioSupport) [ libpulseaudio ]
|
||||
++ stdenv.lib.optionals (useGtk) [ gtk3 ]
|
||||
++ stdenv.lib.optionals (useQt) [
|
||||
@@ -68,7 +68,7 @@ stdenv.mkDerivation rec {
|
||||
++ stdenv.lib.optionals (useQt) [ "--enable-qt5" ]
|
||||
;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A simple interface for devices supported by the linux UVC driver";
|
||||
homepage = "http://guvcview.sourceforge.net";
|
||||
maintainers = [ maintainers.coconnor ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, autoconf, automake, dbus, glib, libtool, pkgconfig, udisks2 }:
|
||||
{ lib, stdenv, fetchurl, autoconf, automake, dbus, glib, libtool, pkgconfig, udisks2 }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "hal-flash-0.3.3";
|
||||
@@ -13,7 +13,7 @@ stdenv.mkDerivation {
|
||||
|
||||
preConfigure = "libtoolize && aclocal && autoconf && automake --add-missing";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/cshorler/hal-flash";
|
||||
description = "libhal stub library to satisfy the Flash Player DRM requirements";
|
||||
longDescription =
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl }:
|
||||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "hd-idle-1.05";
|
||||
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
installFlags = [ "TARGET_DIR=$(out)" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Spins down external disks after a period of idle time";
|
||||
homepage = "http://hd-idle.sourceforge.net/";
|
||||
license = licenses.gpl2Plus;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl }:
|
||||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "hdparm";
|
||||
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
|
||||
makeFlagsArray=(sbindir=$out/sbin manprefix=$out)
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A tool to get/set ATA/SATA drive parameters under Linux";
|
||||
homepage = "https://sourceforge.net/projects/hdparm/";
|
||||
platforms = platforms.linux;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, pkgconfig, libnl, openssl, sqlite ? null }:
|
||||
{ lib, stdenv, fetchurl, pkgconfig, libnl, openssl, sqlite ? null }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "hostapd";
|
||||
@@ -94,7 +94,7 @@ stdenv.mkDerivation rec {
|
||||
install -vD hostapd_cli.1 -t $man/share/man/man1
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://hostap.epitest.fi";
|
||||
repositories.git = "git://w1.fi/hostap.git";
|
||||
description = "A user space daemon for access point and authentication servers";
|
||||
|
||||
@@ -98,7 +98,7 @@ in stdenv.mkDerivation {
|
||||
done
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Integration Services for running NixOS under HyperV";
|
||||
longDescription = ''
|
||||
This packages contains the daemons that are used by the Hyper-V hypervisor
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, perl, read-edid }:
|
||||
{ lib, stdenv, fetchurl, perl, read-edid }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "i2c-tools";
|
||||
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
||||
rm -rf $out/include # Installs include/linux/i2c-dev.h that conflics with kernel headers
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Set of I2C tools for Linux";
|
||||
homepage = "https://i2c.wiki.kernel.org/index.php/I2C_Tools";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, lynx }:
|
||||
{ lib, stdenv, fetchurl, lynx }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "ifmetric";
|
||||
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
||||
})
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Tool for setting IP interface metrics";
|
||||
longDescription = ''
|
||||
ifmetric is a Linux tool for setting the metrics of all IPv4 routes
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, autoconf-archive, gettext, libtool, intltool, autoconf, automake
|
||||
{ lib, stdenv, fetchFromGitHub, autoconf-archive, gettext, libtool, intltool, autoconf, automake
|
||||
, glib, gtk3, gtk-doc, libgudev, pkgconfig, systemd }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@@ -40,7 +40,7 @@ stdenv.mkDerivation rec {
|
||||
pkgconfig
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Proxy for sending IIO sensor data to D-Bus";
|
||||
homepage = "https://github.com/hadess/iio-sensor-proxy";
|
||||
license = licenses.gpl3 ;
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user