Merge pull request #109632 from siraben/stdenv-lib-2

This commit is contained in:
Sandro
2021-01-17 16:29:40 +01:00
committed by GitHub
12 changed files with 24 additions and 23 deletions

View File

@@ -1,4 +1,4 @@
{ stdenvNoCC, fetchFromGitHub, python3 }:
{ lib, stdenvNoCC, fetchFromGitHub, python3 }:
stdenvNoCC.mkDerivation {
pname = "latexrun";
@@ -19,7 +19,7 @@ stdenvNoCC.mkDerivation {
chmod +x $out/bin/latexrun
'';
meta = with stdenvNoCC.lib; {
meta = with lib; {
description = "A 21st century LaTeX wrapper";
homepage = "https://github.com/aclements/latexrun";
license = licenses.mit;