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, xsel, curl, fetchFromGitLab, makeWrapper}:
|
||||
{ lib, stdenv, xsel, curl, fetchFromGitLab, makeWrapper}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "0x0";
|
||||
@@ -21,7 +21,7 @@ stdenv.mkDerivation {
|
||||
--prefix PATH : '${stdenv.lib.makeBinPath [ curl xsel ]}'
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A client for 0x0.st";
|
||||
homepage = "https://gitlab.com/somasis/scripts/";
|
||||
maintainers = [ maintainers.ar1a ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, buildGoModule, fetchFromGitHub }:
|
||||
{ lib, stdenv, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "3mux";
|
||||
@@ -13,7 +13,7 @@ buildGoModule rec {
|
||||
|
||||
vendorSha256 = "sha256-rcbnyScD2GU1DLY6dTEPgFNXZfgkxXPn5lt6HRqa0d8=";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Terminal multiplexer inspired by i3";
|
||||
longDescription = ''
|
||||
3mux is a terminal multiplexer with out-of-the-box support for search,
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, python3 }:
|
||||
{ lib, stdenv, python3 }:
|
||||
|
||||
with python3.pkgs;
|
||||
|
||||
@@ -17,7 +17,7 @@ buildPythonApplication rec {
|
||||
# No tests
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/pycampers/ampy";
|
||||
license = licenses.mit;
|
||||
description = "Utility to interact with a MicroPython board over a serial connection";
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, libiconv }:
|
||||
{ lib, stdenv, fetchurl, libiconv }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "3.14";
|
||||
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
buildInputs = [ libiconv ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Encrypt files with Advanced Encryption Standard (AES)";
|
||||
homepage = "https://www.aescrypt.com/";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{stdenv, fetchgit, autoreconfHook, halibut}:
|
||||
{lib, stdenv, fetchgit, autoreconfHook, halibut}:
|
||||
let
|
||||
date = "20200705";
|
||||
rev = "2a7d4a2";
|
||||
@@ -16,7 +16,7 @@ stdenv.mkDerivation {
|
||||
|
||||
nativeBuildInputs = [autoreconfHook halibut];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A Unix utility for tracking down wasted disk space";
|
||||
longDescription = ''
|
||||
Most Unix file systems, in their default mode, helpfully record when a
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub
|
||||
{ lib, stdenv, fetchFromGitHub
|
||||
, pkgconfig
|
||||
, autoconf
|
||||
, automake111x
|
||||
@@ -57,7 +57,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "http://alarm-clock.pseudoberries.com/";
|
||||
description = "A fully-featured alarm clock for your GNOME panel or equivalent";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl }:
|
||||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "apparix-11-062";
|
||||
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "http://micans.org/apparix";
|
||||
description = "Add directory bookmarks, distant listing, and distant editing to the command line";
|
||||
maintainers = with maintainers; [ lethalman ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, python3Packages }:
|
||||
{ lib, stdenv, fetchFromGitHub, python3Packages }:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
version = "1.8.1";
|
||||
@@ -16,7 +16,7 @@ python3Packages.buildPythonApplication rec {
|
||||
# Requires python-qt4 (feel free to get it working).
|
||||
preFixup = ''rm "$out/bin/apt-offline-gui"'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Offline APT package manager";
|
||||
license = licenses.gpl3;
|
||||
maintainers = [ ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, buildGoPackage, fetchFromGitHub, installShellFiles, makeWrapper, gnupg, bzip2, xz, graphviz }:
|
||||
{ lib, stdenv, buildGoPackage, fetchFromGitHub, installShellFiles, makeWrapper, gnupg, bzip2, xz, graphviz }:
|
||||
|
||||
let
|
||||
|
||||
@@ -37,7 +37,7 @@ buildGoPackage {
|
||||
--prefix PATH ":" "${stdenv.lib.makeBinPath [ gnupg bzip2 xz graphviz ]}"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://www.aptly.info";
|
||||
description = "Debian repository management tool";
|
||||
license = licenses.mit;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv
|
||||
{ lib, stdenv
|
||||
, fetchurl
|
||||
, fetchzip
|
||||
, autoPatchelfHook
|
||||
@@ -47,7 +47,7 @@ stdenv.mkDerivation rec {
|
||||
mv Archi.app "$out/Applications/"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "ArchiMate modelling toolkit";
|
||||
longDescription = ''
|
||||
Archi is an open source modelling toolkit to create ArchiMate
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, autoreconfHook, libpcap, makeWrapper, perlPackages }:
|
||||
{ lib, stdenv, fetchFromGitHub, autoreconfHook, libpcap, makeWrapper, perlPackages }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "arp-scan";
|
||||
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
|
||||
done;
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "ARP scanning and fingerprinting tool";
|
||||
longDescription = ''
|
||||
Arp-scan is a command-line tool that uses the ARP protocol to discover
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv
|
||||
{ lib, stdenv
|
||||
, rustPlatform
|
||||
, fetchCrate
|
||||
}:
|
||||
@@ -14,7 +14,7 @@ rustPlatform.buildRustPackage rec {
|
||||
|
||||
cargoSha256 = "109ij5h31bhn44l0wywgpnnlfjgyairxr5l19s6bz47sbka0xyxk";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Create asciinema videos from a text file";
|
||||
homepage = "https://github.com/garbas/asciinema-scenario/";
|
||||
maintainers = with maintainers; [ garbas ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchzip
|
||||
{ lib, stdenv, fetchzip
|
||||
, boost, clasp, cmake, gringo, re2c
|
||||
}:
|
||||
|
||||
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
||||
"-DASPCUD_CLASP_PATH=${clasp}/bin/clasp"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Solver for package problems in CUDF format using ASP";
|
||||
homepage = "https://potassco.org/aspcud/";
|
||||
platforms = platforms.all;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, python3, bash }:
|
||||
{ lib, stdenv, fetchFromGitHub, python3, bash }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "autojump";
|
||||
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
|
||||
install -Dt "$out/share/zsh/site-functions/" -m444 "$out/share/autojump/autojump.zsh"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A `cd' command that learns";
|
||||
longDescription = ''
|
||||
One of the most used shell commands is “cd”. A quick survey
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{stdenv, fetchFromGitHub, git, ronn}:
|
||||
{lib, stdenv, fetchFromGitHub, git, ronn}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "automirror";
|
||||
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
installFlags = [ "DESTDIR=$(out)" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/schlomo/automirror";
|
||||
description = "Automatic Display Mirror";
|
||||
license = licenses.gpl3;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv
|
||||
{ lib, stdenv
|
||||
, python3Packages
|
||||
, fetchFromGitHub
|
||||
, systemd
|
||||
@@ -56,7 +56,7 @@ in
|
||||
sha256 = "0rmnqk2bi6bbd2if1rll37mlzlqxzmnazfffdhcpzskxwyaj4yn5";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/phillipberndt/autorandr/";
|
||||
description = "Automatically select a display configuration based on connected devices";
|
||||
license = licenses.gpl3Plus;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, asciidoc, libxml2, docbook_xml_dtd_45, libxslt
|
||||
{ lib, stdenv, fetchurl, asciidoc, libxml2, docbook_xml_dtd_45, libxslt
|
||||
, docbook_xsl, diffutils, coreutils, gnugrep, gnused
|
||||
}:
|
||||
|
||||
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
|
||||
-i "$out/bin/autorevision"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Extracts revision metadata from your VCS repository";
|
||||
homepage = "https://autorevision.github.io/";
|
||||
license = licenses.mit;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# This file was generated by go2nix.
|
||||
{ stdenv, buildGoPackage, fetchgit }:
|
||||
{ lib, stdenv, buildGoPackage, fetchgit }:
|
||||
|
||||
buildGoPackage rec {
|
||||
pname = "azure-vhd-utils";
|
||||
@@ -16,7 +16,7 @@ buildGoPackage rec {
|
||||
|
||||
goDeps = ./deps.nix;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/Microsoft/azure-vhd-utils";
|
||||
description = "Read, inspect and upload VHD files for Azure";
|
||||
longDescription = "Go package to read Virtual Hard Disk (VHD) file, a CLI interface to upload local VHD to Azure storage and to inspect a local VHD";
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, nasm }:
|
||||
{ lib, stdenv, fetchurl, nasm }:
|
||||
|
||||
let
|
||||
inherit (stdenv.hostPlatform.parsed.cpu) bits;
|
||||
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
|
||||
cp ${arch} $out/bin/bandwidth
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://zsmith.co/bandwidth.html";
|
||||
description = "Artificial benchmark for identifying weaknesses in the memory subsystem";
|
||||
license = licenses.gpl2Plus;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{ fetchFromGitHub
|
||||
, stdenv
|
||||
, lib, stdenv
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
||||
cp bash_unit $out/bin/
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Bash unit testing enterprise edition framework for professionals";
|
||||
maintainers = with maintainers; [ pamplemousse ];
|
||||
platforms = platforms.linux;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv
|
||||
{ lib, stdenv
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
||||
cp bashcards $out/bin/
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Practice flashcards in bash";
|
||||
homepage = "https://github.com/rpearce/bashcards/";
|
||||
license = licenses.bsd3;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, python3Packages, fetchFromGitHub }:
|
||||
{ lib, stdenv, python3Packages, fetchFromGitHub }:
|
||||
|
||||
python3Packages.buildPythonApplication {
|
||||
pname = "bashplotlib";
|
||||
@@ -14,7 +14,7 @@ python3Packages.buildPythonApplication {
|
||||
# No tests
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/glamp/bashplotlib";
|
||||
description = "Plotting in the terminal";
|
||||
maintainers = with maintainers; [ dtzWill ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, callPackage, fetchFromGitHub, bash, makeWrapper, bat
|
||||
{ lib, stdenv, callPackage, fetchFromGitHub, bash, makeWrapper, bat
|
||||
# batdiff, batgrep, and batwatch
|
||||
, coreutils
|
||||
, less
|
||||
@@ -76,7 +76,7 @@ let
|
||||
# The per-script derivations will go ahead and patch the files they actually install.
|
||||
dontPatchShebangs = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Bash scripts that integrate bat with various command line tools";
|
||||
homepage = "https://github.com/eth-p/bat-extras";
|
||||
license = with licenses; [ mit ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv
|
||||
{ lib, stdenv
|
||||
, nixosTests
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
@@ -41,7 +41,7 @@ rustPlatform.buildRustPackage rec {
|
||||
|
||||
passthru.tests = { inherit (nixosTests) bat; };
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A cat(1) clone with syntax highlighting and Git integration";
|
||||
homepage = "https://github.com/sharkdp/bat";
|
||||
license = with licenses; [ asl20 /* or */ mit ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv , fetchurl, autoreconfHook }:
|
||||
{ lib, stdenv , fetchurl, autoreconfHook }:
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "bbe";
|
||||
version = "0.2.2";
|
||||
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
outputs = [ "out" "doc" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A sed-like editor for binary files";
|
||||
homepage = "http://bbe-.sourceforge.net/";
|
||||
license = licenses.gpl2Plus;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{ cmake
|
||||
, fetchFromGitLab
|
||||
, stdenv
|
||||
, lib, stdenv
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "1237hpmkls2igp60gdfkbknxpgwvxn1vmv2m41vyl25xw1d3g35w";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
inherit version;
|
||||
description = "A fork of CUnit test framework";
|
||||
homepage = "https://gitlab.linphone.org/BC/public/bcunit";
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, perl, dpkg }:
|
||||
{ lib, stdenv, fetchurl, perl, dpkg }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "bdf2psf";
|
||||
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
||||
mv usr $out
|
||||
";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "BDF to PSF converter";
|
||||
homepage = "https://packages.debian.org/sid/bdf2psf";
|
||||
longDescription = ''
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, cmake }:
|
||||
{ lib, stdenv, fetchFromGitHub, cmake }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "bdf2sfd";
|
||||
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "BDF to SFD converter";
|
||||
homepage = "https://github.com/fcambus/bdf2sfd";
|
||||
license = licenses.bsd2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, fetchpatch }:
|
||||
{ lib, stdenv, fetchFromGitHub, fetchpatch }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "betterdiscordctl";
|
||||
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
|
||||
install -Dm644 README.md $out/share/doc/betterdiscordctl/README.md
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/bb010g/betterdiscordctl";
|
||||
description = "A utility for managing BetterDiscord on Linux";
|
||||
license = licenses.mit;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, perl }:
|
||||
{ lib, stdenv, fetchurl, perl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "bfr-1.6";
|
||||
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
buildInputs = [ perl ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A general-purpose command-line pipe buffer";
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
maintainers = with maintainers; [ pSub ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, ocaml, perl }:
|
||||
{ lib, stdenv, fetchurl, ocaml, perl }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "bibtex2html";
|
||||
@@ -11,7 +11,7 @@ stdenv.mkDerivation {
|
||||
|
||||
buildInputs = [ ocaml perl ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A collection of tools for translating from BibTeX to HTML";
|
||||
homepage = "https://www.lri.fr/~filliatr/bibtex2html/";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, perl }:
|
||||
{ lib, stdenv, fetchurl, perl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "bibtool";
|
||||
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
||||
doCheck = true;
|
||||
checkTarget = "test";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Tool for manipulating BibTeX bibliographies";
|
||||
homepage = "http://www.gerd-neugebauer.de/software/TeX/BibTool/index.en.html";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl }:
|
||||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "bibutils";
|
||||
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
|
||||
doCheck = true;
|
||||
checkTarget = "test";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Bibliography format interconversion";
|
||||
longDescription = "The bibutils program set interconverts between various bibliography formats using a common MODS-format XML intermediate. For example, one can convert RIS-format files to Bibtex by doing two transformations: RIS->MODS->Bibtex. By using a common intermediate for N formats, only 2N programs are required and not N²-N. These programs operate on the command line and are styled after standard UNIX-like filters.";
|
||||
homepage = "https://sourceforge.net/p/bibutils/home/Bibutils/";
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, pkgconfig, python3, xmlbird,
|
||||
{ lib, stdenv, fetchurl, pkgconfig, python3, xmlbird,
|
||||
cairo, gdk-pixbuf, libgee, glib, gtk3, webkitgtk, libnotify, sqlite, vala_0_44,
|
||||
gobject-introspection, gsettings-desktop-schemas, wrapGAppsHook }:
|
||||
|
||||
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
installPhase = "./install.py";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Font editor which can generate fonts in TTF, EOT, SVG and BIRDFONT format";
|
||||
homepage = "https://birdfont.org";
|
||||
license = licenses.gpl3;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, python3, pkgconfig, vala, glib, gobject-introspection }:
|
||||
{ lib, stdenv, fetchurl, python3, pkgconfig, vala, glib, gobject-introspection }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "xmlbird";
|
||||
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
installPhase = "./install.py";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "XML parser for Vala and C programs";
|
||||
homepage = "https://birdfont.org/xmlbird.php";
|
||||
license = licenses.lgpl3;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, python2Packages }:
|
||||
{ lib, stdenv, fetchFromGitHub, python2Packages }:
|
||||
|
||||
python2Packages.buildPythonApplication rec {
|
||||
pname = "bmap-tools";
|
||||
@@ -14,7 +14,7 @@ python2Packages.buildPythonApplication rec {
|
||||
# tests fail only on hydra.
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "bmap-related tools";
|
||||
homepage = "https://github.com/intel/bmap-tools";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, ncurses, libconfuse
|
||||
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, ncurses, libconfuse
|
||||
, libnl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
||||
export PKG_CONFIG="$(command -v "$PKG_CONFIG")"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Network bandwidth monitor";
|
||||
homepage = "https://github.com/tgraf/bmon";
|
||||
# Licensed unter BSD and MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, python3Packages, fetchFromGitHub }:
|
||||
{ lib, stdenv, python3Packages, fetchFromGitHub }:
|
||||
|
||||
with python3Packages;
|
||||
|
||||
@@ -38,7 +38,7 @@ buildPythonApplication rec {
|
||||
|
||||
propagatedBuildInputs = [ arrow click keyring parsedatetime requests six termcolor ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://pypi.python.org/pypi/bonfire";
|
||||
description = "CLI Graylog Client with Follow Mode";
|
||||
license = licenses.bsd3;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, python3Packages, fetchFromGitHub }:
|
||||
{ lib, stdenv, python3Packages, fetchFromGitHub }:
|
||||
|
||||
python3Packages.buildPythonApplication {
|
||||
pname = "broadlink-cli";
|
||||
@@ -29,7 +29,7 @@ python3Packages.buildPythonApplication {
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Tools for interfacing with Broadlink RM2/3 (Pro) remote controls, A1 sensor platforms and SP2/3 smartplugs";
|
||||
maintainers = with maintainers; [ peterhoeg ];
|
||||
inherit (python3Packages.broadlink.meta) homepage license;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv
|
||||
{ lib, stdenv
|
||||
, rustPlatform
|
||||
, fetchCrate
|
||||
, installShellFiles
|
||||
@@ -68,7 +68,7 @@ rustPlatform.buildRustPackage rec {
|
||||
installManPage man/broot.1
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "An interactive tree view, a fuzzy search, a balanced BFS descent and customizable commands";
|
||||
homepage = "https://dystroy.org/broot/";
|
||||
maintainers = with maintainers; [ danieldk ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl }:
|
||||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "buildtorrent";
|
||||
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "sha256-6OJ2R72ziHOsVw1GwalompKwG7Z/WQidHN0IeE9wUtA=";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A simple commandline torrent creator";
|
||||
homepage = "https://mathr.co.uk/blog/torrent.html";
|
||||
license = licenses.gpl3Plus;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, makeWrapper
|
||||
{ lib, stdenv, fetchurl, makeWrapper
|
||||
, ncurses, python3, perl, textual-window-manager
|
||||
, gettext, vim, bc, screen }:
|
||||
|
||||
@@ -53,7 +53,7 @@ stdenv.mkDerivation rec {
|
||||
done
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://launchpad.net/byobu/";
|
||||
description = "Text-based window manager and terminal multiplexer";
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, slop, ffmpeg_3, fetchFromGitHub, makeWrapper}:
|
||||
{ lib, stdenv, slop, ffmpeg_3, fetchFromGitHub, makeWrapper}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "capture-unstable";
|
||||
@@ -21,7 +21,7 @@ stdenv.mkDerivation {
|
||||
--prefix PATH : '${stdenv.lib.makeBinPath [ slop ffmpeg_3 ]}'
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A no bullshit screen capture tool";
|
||||
homepage = "https://github.com/buhman/capture";
|
||||
maintainers = [ maintainers.ar1a ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, autoconf, ncurses, pcre }:
|
||||
{ lib, stdenv, fetchurl, autoconf, ncurses, pcre }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "ccze-0.2.1-2";
|
||||
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
preConfigure = '' autoheader && autoconf '';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Fast, modular log colorizer";
|
||||
longDescription = ''
|
||||
Fast log colorizer written in C, intended to be a drop-in replacement
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, autoconf, automake, libtool, pkgconfig, which, libxslt, libxml2, docbook_xml_dtd_412, docbook_xsl, glib, imagemagick, darwin }:
|
||||
{ lib, stdenv, fetchFromGitHub, autoconf, automake, libtool, pkgconfig, which, libxslt, libxml2, docbook_xml_dtd_412, docbook_xsl, glib, imagemagick, darwin }:
|
||||
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@@ -35,7 +35,7 @@ stdenv.mkDerivation rec {
|
||||
"--with-xml-catalog=${docbook_xml_dtd_412}/xml/dtd/docbook/catalog.xml"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Terminal graphics for the 21st century";
|
||||
homepage = "https://hpjansson.org/chafa/";
|
||||
license = licenses.lgpl3Plus;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub }:
|
||||
{ lib, stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "chelf";
|
||||
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
|
||||
mv chelf $out/bin/chelf
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "change or display the stack size of an ELF binary";
|
||||
homepage = "https://github.com/Gottox/chelf";
|
||||
license = licenses.bsd2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, buildGoModule, fetchFromGitHub, installShellFiles }:
|
||||
{ lib, stdenv, buildGoModule, fetchFromGitHub, installShellFiles }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "chezmoi";
|
||||
@@ -29,7 +29,7 @@ buildGoModule rec {
|
||||
|
||||
subPackages = [ "." ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://www.chezmoi.io/";
|
||||
description = "Manage your dotfiles across multiple machines, securely";
|
||||
license = licenses.mit;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub
|
||||
{ lib, stdenv, fetchFromGitHub
|
||||
, python3
|
||||
}:
|
||||
|
||||
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
|
||||
bash test/run_tests $out/bin
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Scripts to save Google Chrome's bookmarks and history as HTML bookmarks files";
|
||||
homepage = "https://github.com/bdesham/chrome-export";
|
||||
license = [ licenses.isc ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv
|
||||
{ lib, stdenv
|
||||
, fetchFromGitHub
|
||||
, unstableGitUpdater
|
||||
, makeWrapper
|
||||
@@ -38,7 +38,7 @@ stdenv.mkDerivation {
|
||||
|
||||
passthru.updateScript = unstableGitUpdater { };
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "CLI client for cheat.sh, a community driven cheat sheet";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fgaz evanjs ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, mkDerivation, fetchFromGitHub, substituteAll, udev
|
||||
{ lib, stdenv, mkDerivation, fetchFromGitHub, substituteAll, udev
|
||||
, pkgconfig, qtbase, cmake, zlib, kmod }:
|
||||
|
||||
mkDerivation rec {
|
||||
@@ -39,7 +39,7 @@ mkDerivation rec {
|
||||
})
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Driver and configuration tool for Corsair keyboards and mice";
|
||||
homepage = "https://github.com/ckb-next/ckb-next";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub }:
|
||||
{ lib, stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "clac";
|
||||
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
||||
cp README* LICENSE "$out/share/doc/${pname}"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
inherit version;
|
||||
description = "Interactive stack-based calculator";
|
||||
homepage = "https://github.com/soveran/clac";
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl }:
|
||||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
let
|
||||
version = "3.1.4";
|
||||
@@ -23,7 +23,7 @@ stdenv.mkDerivation {
|
||||
cp bin/clasp $out/bin/clasp
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Answer set solver for (extended) normal and disjunctive logic programs";
|
||||
homepage = "http://potassco.sourceforge.net/";
|
||||
platforms = platforms.all;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
||||
{ lib, stdenv, buildGoPackage, fetchFromGitHub }:
|
||||
|
||||
buildGoPackage rec {
|
||||
pname = "claws";
|
||||
@@ -13,7 +13,7 @@ buildGoPackage rec {
|
||||
sha256 = "0nl7xvdivnabqr98mh3m1pwqznprsaqpagny6zcwwmz480x4pmfz";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/thehowl/claws";
|
||||
description = "Interactive command line client for testing websocket servers";
|
||||
license = licenses.mit;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, ncurses }:
|
||||
{ lib, stdenv, fetchurl, ncurses }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "clex";
|
||||
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "File manager with full-screen terminal interface";
|
||||
longDescription = ''
|
||||
CLEX (pronounced KLEKS) displays directory contents including the file
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ libX11, libXfixes, stdenv, fetchFromGitHub }:
|
||||
{ libX11, libXfixes, lib, stdenv, fetchFromGitHub }:
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "clipnotify";
|
||||
version = "git-2018-02-20";
|
||||
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
||||
cp clipnotify $out/bin
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Notify on new X clipboard events";
|
||||
inherit (src.meta) homepage;
|
||||
maintainers = with maintainers; [ jb55 ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{fetchFromGitHub , stdenv, python3, gtk3, libwnck3,
|
||||
{fetchFromGitHub , lib, stdenv, python3, gtk3, libwnck3,
|
||||
gobject-introspection, wrapGAppsHook }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
||||
cp clipster $out/bin/
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "lightweight python clipboard manager";
|
||||
longDescription = ''
|
||||
Clipster was designed to try to add a good selection of useful features, while avoiding bad design decisions or becoming excessively large.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, buildGoPackage, fetchgit }:
|
||||
{ lib, stdenv, buildGoPackage, fetchgit }:
|
||||
|
||||
buildGoPackage rec {
|
||||
pname = "cloud-sql-proxy";
|
||||
@@ -18,7 +18,7 @@ buildGoPackage rec {
|
||||
|
||||
buildFlagsArray = [ "-ldflags=" "-X main.versionString=${version}" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "An authenticating proxy for Second Generation Google Cloud SQL databases";
|
||||
homepage = "https://${goPackagePath}";
|
||||
license = licenses.asl20;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, makeWrapper
|
||||
{ lib, stdenv, fetchurl, makeWrapper
|
||||
, gawk, gnused, util-linux, file
|
||||
, wget, python3, qemu-utils, euca2ools
|
||||
, e2fsprogs, cdrkit
|
||||
@@ -48,7 +48,7 @@ in stdenv.mkDerivation rec {
|
||||
|
||||
dontBuild = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
platforms = platforms.unix;
|
||||
license = licenses.gpl3;
|
||||
};
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, cmake, ocl-icd, opencl-clhpp }:
|
||||
{ lib, stdenv, fetchFromGitHub, cmake, ocl-icd, opencl-clhpp }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "clpeak";
|
||||
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
buildInputs = [ ocl-icd opencl-clhpp ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A tool which profiles OpenCL devices to find their peak capacities";
|
||||
homepage = "https://github.com/krrishnarraj/clpeak/";
|
||||
license = licenses.unlicense;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv
|
||||
{ lib, stdenv
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
@@ -16,7 +16,7 @@ rustPlatform.buildRustPackage rec {
|
||||
|
||||
cargoSha256 = "1rxrdavj07i7qa5rf1i3aj7zdcp7c6lrg8yiy75r6lm4g98izzww";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A high performance code minimap render";
|
||||
homepage = "https://github.com/wfxr/code-minimap";
|
||||
license = with licenses; [ asl20 /* or */ mit ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, python3Packages, fetchFromGitHub }:
|
||||
{ lib, stdenv, python3Packages, fetchFromGitHub }:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "codebraid";
|
||||
@@ -16,7 +16,7 @@ python3Packages.buildPythonApplication rec {
|
||||
checkPhase = ''
|
||||
$out/bin/codebraid --help > /dev/null
|
||||
'';
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/gpoore/codebraid";
|
||||
description = ''
|
||||
Live code in Pandoc Markdown.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv
|
||||
{ lib, stdenv
|
||||
, fetchurl
|
||||
, colord
|
||||
, gettext
|
||||
@@ -50,7 +50,7 @@ stdenv.mkDerivation rec {
|
||||
gtk3
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://www.freedesktop.org/software/colord/intro.html";
|
||||
license = licenses.lgpl21Plus;
|
||||
platforms = platforms.linux;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv
|
||||
{ lib, stdenv
|
||||
, fetchurl
|
||||
, nixosTests
|
||||
, bash-completion
|
||||
@@ -104,7 +104,7 @@ stdenv.mkDerivation rec {
|
||||
};
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "System service to manage, install and generate color profiles to accurately color manage input and output devices";
|
||||
homepage = "https://www.freedesktop.org/software/colord/";
|
||||
license = licenses.lgpl2Plus;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, pkg-config, gtk2 }:
|
||||
{ lib, stdenv, fetchFromGitHub, pkg-config, gtk2 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "colorpicker";
|
||||
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
||||
install -Dt $out/bin colorpicker
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Click on a pixel on your screen and print its color value in RGB";
|
||||
homepage = "https://github.com/Ancurio/colorpicker";
|
||||
maintainers = with maintainers; [ jb55 ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, xcbuildHook, Foundation, AddressBook }:
|
||||
{ lib, stdenv, fetchurl, xcbuildHook, Foundation, AddressBook }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
version = "1.1a-3";
|
||||
@@ -17,7 +17,7 @@ stdenv.mkDerivation {
|
||||
cp Products/Default/contacts $out/bin
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Access contacts from the Mac address book from command-line";
|
||||
homepage = "http://www.gnufoo.org/contacts/contacts.html";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv
|
||||
{ lib, stdenv
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
|
||||
install -Dm755 bin/convbin $out/bin/convbin
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Converts files to other formats";
|
||||
longDescription = ''
|
||||
This program is used to convert files to other formats,
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv
|
||||
{ lib, stdenv
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
|
||||
install -Dm755 convfont $out/bin/convfont
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Converts font for use with FontLibC";
|
||||
homepage = "https://github.com/drdnar/convfont";
|
||||
license = licenses.wtfpl;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv
|
||||
{ lib, stdenv
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
|
||||
install -Dm755 bin/convimg $out/bin/convimg
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Image palette quantization";
|
||||
longDescription = ''
|
||||
This program is used to convert images to other formats,
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, perl }:
|
||||
{ lib, stdenv, fetchurl, perl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "convmv-2.05";
|
||||
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
buildInputs = [ perl ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Converts filenames from one encoding to another";
|
||||
platforms = platforms.linux ++ platforms.freebsd ++ platforms.cygwin;
|
||||
maintainers = [ ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, perl }:
|
||||
{ lib, stdenv, fetchurl, perl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "3.03+dfsg2";
|
||||
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
|
||||
install -m644 cows/* -t $out/share/cows/
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A program which generates ASCII pictures of a cow with a message";
|
||||
homepage = "https://en.wikipedia.org/wiki/Cowsay";
|
||||
license = licenses.gpl1;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub }:
|
||||
{ lib, stdenv, fetchFromGitHub }:
|
||||
let version = "0.6";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
@@ -16,7 +16,7 @@ stdenv.mkDerivation {
|
||||
install -Dm755 cp437 -t $out/bin
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = ''
|
||||
Emulates an old-style "code page 437" / "IBM-PC" character
|
||||
set terminal on a modern UTF-8 terminal emulator
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{stdenv, fetchurl}:
|
||||
{lib, stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "cpulimit";
|
||||
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
installFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "http://limitcpu.sourceforge.net/";
|
||||
description = "A tool to throttle the CPU usage of programs";
|
||||
platforms = with platforms; linux ++ freebsd;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, curl, jansson, autoconf, automake
|
||||
{ lib, stdenv, fetchFromGitHub, curl, jansson, autoconf, automake
|
||||
, aesni ? stdenv.hostPlatform.aesSupport }:
|
||||
|
||||
let
|
||||
@@ -23,7 +23,7 @@ stdenv.mkDerivation {
|
||||
|
||||
configureFlags = [ (if aesni then "--enable-aes-ni" else "--disable-aes-ni") ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Multi-algo CPUMiner";
|
||||
homepage = "https://github.com/wolf9466/cpuminer-multi";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv
|
||||
{ lib, stdenv
|
||||
, fetchFromGitHub
|
||||
, curl
|
||||
, jansson
|
||||
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
configureFlags = [ "CFLAGS=-O3" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/pooler/cpuminer";
|
||||
description = "CPU miner for Litecoin and Bitcoin";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, cmake }:
|
||||
{ lib, stdenv, fetchFromGitHub, cmake }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "crex";
|
||||
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Explore, test, and check regular expressions in the terminal";
|
||||
homepage = "https://octobanana.com/software/crex";
|
||||
license = licenses.mit;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, python3Packages, help2man, installShellFiles }:
|
||||
{ lib, stdenv, fetchFromGitHub, python3Packages, help2man, installShellFiles }:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "crudini";
|
||||
@@ -40,7 +40,7 @@ python3Packages.buildPythonApplication rec {
|
||||
runHook postCheck
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A utility for manipulating ini files ";
|
||||
homepage = "https://www.pixelbeat.org/programs/crudini/";
|
||||
license = licenses.gpl2Only;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl }:
|
||||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "csv2latex";
|
||||
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
|
||||
make PREFIX=$out install
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Command-line CSV to LaTeX file converter";
|
||||
homepage = "http://brouits.free.fr/csv2latex/";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
||||
{ lib, stdenv, buildGoPackage, fetchFromGitHub }:
|
||||
|
||||
buildGoPackage rec {
|
||||
pname = "dashing";
|
||||
@@ -17,7 +17,7 @@ buildGoPackage rec {
|
||||
|
||||
buildFlagsArray = [ "-ldflags=-X main.version=${version}" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A Dash Generator Script for Any HTML";
|
||||
homepage = "https://github.com/technosophos/dashing";
|
||||
license = licenses.mit;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl }:
|
||||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "datamash";
|
||||
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "1cxdlhgz3wzjqlq8bgwad93fgqymk2abbldfzw1ffnhcp4mmjjjp";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A command-line program which performs basic numeric,textual and statistical operations on input textual data files";
|
||||
homepage = "https://www.gnu.org/software/datamash/";
|
||||
license = licenses.gpl3Plus;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, autoreconfHook, tzdata, fetchpatch }:
|
||||
{ lib, stdenv, fetchurl, autoreconfHook, tzdata, fetchpatch }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "0.4.7";
|
||||
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A bunch of tools that revolve around fiddling with dates and times in the command line";
|
||||
homepage = "http://www.fresse.org/dateutils/";
|
||||
license = licenses.bsd3;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, autoreconfHook, intltool, libxml2
|
||||
{ lib, stdenv, fetchFromGitHub, autoreconfHook, intltool, libxml2
|
||||
, pciutils, pkgconfig, gtk2, ddccontrol-db
|
||||
, makeDesktopItem
|
||||
}:
|
||||
@@ -55,7 +55,7 @@ stdenv.mkDerivation rec {
|
||||
categories = "Settings;HardwareSettings;";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A program used to control monitor parameters by software";
|
||||
homepage = "https://github.com/ddccontrol/ddccontrol";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
|
||||
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
|
||||
, glib, i2c-tools, udev, libgudev, libusb1, libdrm, xorg }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
||||
glib libusb1 libdrm xorg.libXrandr
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "http://www.ddcutil.com/";
|
||||
description = "Query and change Linux monitor settings using DDC/CI and USB";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{stdenv, fetchurl, unzip, xz, dpkg
|
||||
{lib, stdenv, fetchurl, unzip, xz, dpkg
|
||||
, libxslt, docbook_xsl, makeWrapper
|
||||
, python3Packages
|
||||
, perlPackages, curl, gnupg, diffutils
|
||||
@@ -57,7 +57,7 @@ in stdenv.mkDerivation rec {
|
||||
done
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = ''Debian package maintenance scripts'';
|
||||
license = licenses.free; # Mix of public domain, Artistic+GPL, GPL1+, GPL2+, GPL3+, and GPL2-only... TODO
|
||||
maintainers = with maintainers; [raskin];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl }:
|
||||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "debianutils";
|
||||
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "1pjh2s5f8qp8jaky2x08yvf125np0s48zb2z6f3h6x4vf20hws1v";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Miscellaneous utilities specific to Debian";
|
||||
longDescription = ''
|
||||
This package provides a number of small utilities which are used primarily by the installation scripts of Debian packages, although you may use them directly.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, dpkg, gawk, perl, wget, coreutils, util-linux
|
||||
{ lib, stdenv, fetchurl, dpkg, gawk, perl, wget, coreutils, util-linux
|
||||
, gnugrep, gnutar, gnused, gzip, makeWrapper }:
|
||||
# USAGE like this: debootstrap sid /tmp/target-chroot-directory
|
||||
# There is also cdebootstrap now. Is that easier to maintain?
|
||||
@@ -57,7 +57,7 @@ in stdenv.mkDerivation rec {
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Tool to create a Debian system in a chroot";
|
||||
homepage = "https://wiki.debian.org/Debootstrap";
|
||||
license = licenses.mit;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{stdenv, fetchurl, flex}:
|
||||
{lib, stdenv, fetchurl, flex}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "detox-1.2.0";
|
||||
@@ -16,7 +16,7 @@ stdenv.mkDerivation {
|
||||
install -m644 safe.tbl $out/share/detox/
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "http://detox.sourceforge.net/";
|
||||
description = "Utility designed to clean up filenames";
|
||||
longDescription = ''
|
||||
|
||||
@@ -68,7 +68,7 @@ python3Packages.buildPythonApplication rec {
|
||||
cp doc/diffoscope.1 $out/share/man/man1/diffoscope.1
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Perform in-depth comparison of files, archives, and directories";
|
||||
longDescription = ''
|
||||
diffoscope will try to get to the bottom of what makes files or directories
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, buildGoModule, bash, fish, zsh }:
|
||||
{ lib, stdenv, fetchFromGitHub, buildGoModule, bash, fish, zsh }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "direnv";
|
||||
@@ -34,7 +34,7 @@ buildGoModule rec {
|
||||
make test-go test-bash test-fish test-zsh
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A shell extension that manages your environment";
|
||||
longDescription = ''
|
||||
Once hooked into your shell direnv is looking for an .envrc file in your
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, rustPlatform, fetchFromGitHub }:
|
||||
{ lib, stdenv, rustPlatform, fetchFromGitHub }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "diskonaut";
|
||||
@@ -13,7 +13,7 @@ rustPlatform.buildRustPackage rec {
|
||||
|
||||
cargoSha256 = "0y86ikf235lp5j85fgzawgp4vx66rmzqd6p5n8iy3mqwn3c1ggb8";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Terminal disk space navigator";
|
||||
homepage = "https://github.com/imsnif/diskonaut";
|
||||
license = licenses.mit;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, cmake, ncurses, zlib }:
|
||||
{ lib, stdenv, fetchFromGitHub, cmake, ncurses, zlib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "diskscan";
|
||||
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/baruch/diskscan";
|
||||
description = "Scan HDD/SSD for failed and near failed sectors";
|
||||
platforms = with platforms; linux;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, rustPlatform, Security }:
|
||||
{ lib, stdenv, fetchFromGitHub, rustPlatform, Security }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "diskus";
|
||||
@@ -15,7 +15,7 @@ rustPlatform.buildRustPackage rec {
|
||||
|
||||
cargoSha256 = "0bivmjn7h4lfp5azbc6q0xiqq3fk68jdd4kwrwgbxiljg4xd2qy8";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A minimal, fast alternative to 'du -sh'";
|
||||
homepage = "https://github.com/sharkdp/diskus";
|
||||
license = with licenses; [ asl20 /* or */ mit ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, expat }:
|
||||
{ lib, stdenv, fetchurl, expat }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "docbook2mdoc";
|
||||
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
makeFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "http://mdocml.bsd.lv/";
|
||||
description = "converter from DocBook V4.x and v5.x XML into mdoc";
|
||||
license = licenses.isc;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ buildGoModule, fetchFromGitHub, stdenv, docker }:
|
||||
{ buildGoModule, fetchFromGitHub, lib, stdenv, docker }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "docker-ls";
|
||||
@@ -13,7 +13,7 @@ buildGoModule rec {
|
||||
|
||||
vendorSha256 = "sha256-UulcjQOLEIP++eoYQTEIbCJW51jyE312dMxB8+AKcdU=";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Tools for browsing and manipulating docker registries";
|
||||
longDescription = ''
|
||||
Docker-ls is a set of CLI tools for browsing and manipulating docker registries.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, buildGoModule, fetchFromGitHub }:
|
||||
{ lib, stdenv, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "docui";
|
||||
@@ -15,7 +15,7 @@ buildGoModule rec {
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "TUI Client for Docker";
|
||||
homepage = "https://github.com/skanehira/docui";
|
||||
license = licenses.mit;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, python3Packages }:
|
||||
{ lib, stdenv, python3Packages }:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "doitlive";
|
||||
@@ -14,7 +14,7 @@ python3Packages.buildPythonApplication rec {
|
||||
# disable tests (too many failures)
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Tool for live presentations in the terminal";
|
||||
homepage = "https://pypi.python.org/pypi/doitlive";
|
||||
license = licenses.mit;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
|
||||
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
|
||||
, tokyocabinet, ncurses
|
||||
, cairo ? null, pango ? null
|
||||
, enableCairo ? stdenv.isLinux
|
||||
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
|
||||
configureFlags =
|
||||
stdenv.lib.optionals (!enableCairo) [ "--disable-x11" "--disable-cairo" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "http://duc.zevv.nl/";
|
||||
description = "Collection of tools for inspecting and visualizing disk usage";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl }:
|
||||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "dumptorrent";
|
||||
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
|
||||
cp ./dumptorrent $out/bin
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Dump .torrent file information";
|
||||
homepage = "https://sourceforge.net/projects/dumptorrent/";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, perl, which
|
||||
{ lib, stdenv, fetchFromGitHub, perl, which
|
||||
, openssl, sqlite }:
|
||||
|
||||
# Instead of writing directly into $HOME, we change the default db location
|
||||
@@ -40,7 +40,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "CLI utility to find duplicate files";
|
||||
homepage = "http://www.virkki.com/dupd";
|
||||
license = licenses.gpl3;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, rustPlatform }:
|
||||
{ lib, stdenv, fetchFromGitHub, rustPlatform }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "du-dust";
|
||||
@@ -20,7 +20,7 @@ rustPlatform.buildRustPackage rec {
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "du + rust = dust. Like du but more intuitive";
|
||||
homepage = "https://github.com/bootandy/dust";
|
||||
license = licenses.asl20;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, ncurses, customConfig ? null, name, src, patches ? [] }:
|
||||
{ lib, stdenv, ncurses, customConfig ? null, name, src, patches ? [] }:
|
||||
stdenv.mkDerivation {
|
||||
|
||||
inherit name src patches;
|
||||
@@ -19,7 +19,7 @@ stdenv.mkDerivation {
|
||||
|
||||
makeFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Dynamic virtual terminal manager";
|
||||
homepage = "http://www.brain-dump.org/projects/dvtm";
|
||||
license = licenses.mit;
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user