Merge pull request #109632 from siraben/stdenv-lib-2
This commit is contained in:
commit
4e292b04af
@ -1,4 +1,4 @@
|
|||||||
{ gcc8Stdenv, callPackage, fetchgit, fetchpatch, cmake, libarcusLulzbot, stb, protobuf }:
|
{ lib, gcc8Stdenv, callPackage, fetchgit, fetchpatch, cmake, libarcusLulzbot, stb, protobuf }:
|
||||||
|
|
||||||
gcc8Stdenv.mkDerivation rec {
|
gcc8Stdenv.mkDerivation rec {
|
||||||
pname = "curaengine-lulzBot";
|
pname = "curaengine-lulzBot";
|
||||||
@ -17,7 +17,7 @@ gcc8Stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
cmakeFlags = [ "-DCURA_ENGINE_VERSION=${version}" ];
|
cmakeFlags = [ "-DCURA_ENGINE_VERSION=${version}" ];
|
||||||
|
|
||||||
meta = with gcc8Stdenv.lib; {
|
meta = with lib; {
|
||||||
description = "A powerful, fast and robust engine for processing 3D models into 3D printing instruction";
|
description = "A powerful, fast and robust engine for processing 3D models into 3D printing instruction";
|
||||||
homepage = "https://code.alephobjects.com/source/curaengine-lulzbot/";
|
homepage = "https://code.alephobjects.com/source/curaengine-lulzbot/";
|
||||||
license = licenses.agpl3;
|
license = licenses.agpl3;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenvNoCC, fetchFromGitHub, gnome-themes-extra, inkscape, xcursorgen, python3 }:
|
{ lib, stdenvNoCC, fetchFromGitHub, gnome-themes-extra, inkscape, xcursorgen, python3 }:
|
||||||
|
|
||||||
let
|
let
|
||||||
py = python3.withPackages(ps: [ ps.pillow ]);
|
py = python3.withPackages(ps: [ ps.pillow ]);
|
||||||
@ -41,7 +41,7 @@ in stdenvNoCC.mkDerivation rec {
|
|||||||
done
|
done
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenvNoCC.lib; {
|
meta = with lib; {
|
||||||
description = "Material Based Cursor";
|
description = "Material Based Cursor";
|
||||||
homepage = "https://github.com/KaizIqbal/Bibata_Cursor";
|
homepage = "https://github.com/KaizIqbal/Bibata_Cursor";
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenvNoCC, fetchFromGitHub, gnome-themes-extra, inkscape, xcursorgen, python3 }:
|
{ lib, stdenvNoCC, fetchFromGitHub, gnome-themes-extra, inkscape, xcursorgen, python3 }:
|
||||||
|
|
||||||
let
|
let
|
||||||
py = python3.withPackages(ps: [ ps.pillow ]);
|
py = python3.withPackages(ps: [ ps.pillow ]);
|
||||||
@ -41,7 +41,7 @@ in stdenvNoCC.mkDerivation rec {
|
|||||||
done
|
done
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenvNoCC.lib; {
|
meta = with lib; {
|
||||||
description = "Cursors Based on Bibata";
|
description = "Cursors Based on Bibata";
|
||||||
homepage = "https://github.com/KaizIqbal/Bibata_Extra_Cursor";
|
homepage = "https://github.com/KaizIqbal/Bibata_Extra_Cursor";
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenvNoCC, fetchFromGitHub, gnome-themes-extra, inkscape, xcursorgen }:
|
{ lib, stdenvNoCC, fetchFromGitHub, gnome-themes-extra, inkscape, xcursorgen }:
|
||||||
|
|
||||||
stdenvNoCC.mkDerivation rec {
|
stdenvNoCC.mkDerivation rec {
|
||||||
pname = "bibata-cursors-translucent";
|
pname = "bibata-cursors-translucent";
|
||||||
@ -31,7 +31,7 @@ stdenvNoCC.mkDerivation rec {
|
|||||||
cp -pr Bibata_* $out/share/icons/
|
cp -pr Bibata_* $out/share/icons/
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenvNoCC.lib; {
|
meta = with lib; {
|
||||||
description = "Translucent Varient of the Material Based Cursor";
|
description = "Translucent Varient of the Material Based Cursor";
|
||||||
homepage = "https://github.com/Silicasandwhich/Bibata_Cursor_Translucent";
|
homepage = "https://github.com/Silicasandwhich/Bibata_Cursor_Translucent";
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenvNoCC, fetchurl }:
|
{ lib, stdenvNoCC, fetchurl }:
|
||||||
let
|
let
|
||||||
srcs = {
|
srcs = {
|
||||||
train-images = fetchurl {
|
train-images = fetchurl {
|
||||||
@ -30,7 +30,7 @@ in
|
|||||||
ln -s "${srcs.test-labels}" "$out/${srcs.test-labels.name}"
|
ln -s "${srcs.test-labels}" "$out/${srcs.test-labels.name}"
|
||||||
'';
|
'';
|
||||||
phases = [ "installPhase" ];
|
phases = [ "installPhase" ];
|
||||||
meta = with stdenvNoCC.lib; {
|
meta = with lib; {
|
||||||
description = "A large database of handwritten digits";
|
description = "A large database of handwritten digits";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
The MNIST database (Modified National Institute of Standards and
|
The MNIST database (Modified National Institute of Standards and
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
{ stdenvNoCC
|
{ lib
|
||||||
|
, stdenvNoCC
|
||||||
, coreutils
|
, coreutils
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -10,7 +11,7 @@
|
|||||||
stdenvNoCC.mkDerivation {
|
stdenvNoCC.mkDerivation {
|
||||||
inherit patches src version;
|
inherit patches src version;
|
||||||
|
|
||||||
pname = "fedora${stdenvNoCC.lib.versions.major version}-backgrounds";
|
pname = "fedora${lib.versions.major version}-backgrounds";
|
||||||
|
|
||||||
dontBuild = true;
|
dontBuild = true;
|
||||||
|
|
||||||
@ -32,7 +33,7 @@ stdenvNoCC.mkDerivation {
|
|||||||
"DESTDIR=$(out)"
|
"DESTDIR=$(out)"
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with stdenvNoCC.lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/fedoradesign/backgrounds";
|
homepage = "https://github.com/fedoradesign/backgrounds";
|
||||||
description = "A set of default and supplemental wallpapers for Fedora";
|
description = "A set of default and supplemental wallpapers for Fedora";
|
||||||
license = licenses.cc-by-sa-40;
|
license = licenses.cc-by-sa-40;
|
||||||
|
@ -38,7 +38,7 @@ buildEnv {
|
|||||||
++ lib.optional enableDwarfTherapist dwarf-therapist
|
++ lib.optional enableDwarfTherapist dwarf-therapist
|
||||||
++ lib.optional enableLegendsBrowser legends-browser;
|
++ lib.optional enableLegendsBrowser legends-browser;
|
||||||
|
|
||||||
meta = with stdenvNoCC.lib; {
|
meta = with lib; {
|
||||||
description = "An opinionated wrapper for Dwarf Fortress";
|
description = "An opinionated wrapper for Dwarf Fortress";
|
||||||
maintainers = with maintainers; [ Baughn numinit ];
|
maintainers = with maintainers; [ Baughn numinit ];
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenvNoCC, buildEnv, writeShellScriptBin, fetchurl, jre }:
|
{ lib, stdenvNoCC, buildEnv, writeShellScriptBin, fetchurl, jre }:
|
||||||
|
|
||||||
let
|
let
|
||||||
name = "legends-browser-${version}";
|
name = "legends-browser-${version}";
|
||||||
@ -26,7 +26,7 @@ buildEnv {
|
|||||||
inherit name;
|
inherit name;
|
||||||
paths = [ script ];
|
paths = [ script ];
|
||||||
|
|
||||||
meta = with stdenvNoCC.lib; {
|
meta = with lib; {
|
||||||
description = "A multi-platform, open source, java-based legends viewer for dwarf fortress";
|
description = "A multi-platform, open source, java-based legends viewer for dwarf fortress";
|
||||||
maintainers = with maintainers; [ Baughn ];
|
maintainers = with maintainers; [ Baughn ];
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
@ -80,7 +80,7 @@ stdenvNoCC.mkDerivation rec {
|
|||||||
cp -a *.png $art/data/art/
|
cp -a *.png $art/data/art/
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenvNoCC.lib; {
|
meta = with lib; {
|
||||||
description = "A plugin for Dwarf Fortress / DFHack that improves various aspects the game interface.";
|
description = "A plugin for Dwarf Fortress / DFHack that improves various aspects the game interface.";
|
||||||
maintainers = with maintainers; [ Baughn numinit ];
|
maintainers = with maintainers; [ Baughn numinit ];
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ clangStdenv, fetchFromGitHub, fetchurl, fetchpatch, gyp, which, ninja,
|
{ lib, clangStdenv, fetchFromGitHub, fetchurl, fetchpatch, gyp, which, ninja,
|
||||||
python, pkgconfig, protobuf, gtk2, zinnia, qt5, libxcb, tegaki-zinnia-japanese,
|
python, pkgconfig, protobuf, gtk2, zinnia, qt5, libxcb, tegaki-zinnia-japanese,
|
||||||
fcitx, gettext }:
|
fcitx, gettext }:
|
||||||
let
|
let
|
||||||
@ -100,7 +100,7 @@ in clangStdenv.mkDerivation rec {
|
|||||||
install -m 644 fcitx-mozc-icons/*.png $out/share/fcitx/mozc/icon/
|
install -m 644 fcitx-mozc-icons/*.png $out/share/fcitx/mozc/icon/
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with clangStdenv.lib; {
|
meta = with lib; {
|
||||||
isFcitxEngine = true;
|
isFcitxEngine = true;
|
||||||
description = "Fcitx engine for Google japanese input method";
|
description = "Fcitx engine for Google japanese input method";
|
||||||
homepage = "https://github.com/google/mozc";
|
homepage = "https://github.com/google/mozc";
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ cabextract, fetchFromGitHub, readline, stdenv_32bit }:
|
{ lib, cabextract, fetchFromGitHub, readline, stdenv_32bit }:
|
||||||
|
|
||||||
# stdenv_32bit is needed because the program depends upon 32-bit libraries and does not have
|
# stdenv_32bit is needed because the program depends upon 32-bit libraries and does not have
|
||||||
# support for 64-bit yet: it requires libc6-dev:i386, libreadline-dev:i386.
|
# support for 64-bit yet: it requires libc6-dev:i386, libreadline-dev:i386.
|
||||||
@ -21,7 +21,7 @@ stdenv_32bit.mkDerivation rec {
|
|||||||
cp mpclient $out/bin/
|
cp mpclient $out/bin/
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv_32bit.lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/taviso/loadlibrary";
|
homepage = "https://github.com/taviso/loadlibrary";
|
||||||
description = "Porting Windows Dynamic Link Libraries to Linux";
|
description = "Porting Windows Dynamic Link Libraries to Linux";
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenvNoCC, fetchFromGitHub, python3 }:
|
{ lib, stdenvNoCC, fetchFromGitHub, python3 }:
|
||||||
|
|
||||||
stdenvNoCC.mkDerivation {
|
stdenvNoCC.mkDerivation {
|
||||||
pname = "latexrun";
|
pname = "latexrun";
|
||||||
@ -19,7 +19,7 @@ stdenvNoCC.mkDerivation {
|
|||||||
chmod +x $out/bin/latexrun
|
chmod +x $out/bin/latexrun
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenvNoCC.lib; {
|
meta = with lib; {
|
||||||
description = "A 21st century LaTeX wrapper";
|
description = "A 21st century LaTeX wrapper";
|
||||||
homepage = "https://github.com/aclements/latexrun";
|
homepage = "https://github.com/aclements/latexrun";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user