no stdenv.lib
This commit is contained in:
parent
2ba1bb9605
commit
06eb350879
2
ci.nix
2
ci.nix
@ -9,7 +9,7 @@
|
|||||||
# then your CI will be able to build and cache only those packages for
|
# then your CI will be able to build and cache only those packages for
|
||||||
# which this is possible.
|
# which this is possible.
|
||||||
|
|
||||||
{ pkgs ? import <nixpkgs> {} }:
|
{ pkgs ? import <nixos-unstable> {} }:
|
||||||
|
|
||||||
with builtins;
|
with builtins;
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchFromGitHub, gnuplot, ruby }:
|
{ lib, stdenv, fetchFromGitHub, gnuplot, ruby }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "eplot-unstable-2018-09-03";
|
name = "eplot-unstable-2018-09-03";
|
||||||
@ -20,7 +20,7 @@ stdenv.mkDerivation {
|
|||||||
sed -i -e "s|gnuplot -persist|${gnuplot}/bin/gnuplot -persist|" "$out/bin/eplot"
|
sed -i -e "s|gnuplot -persist|${gnuplot}/bin/gnuplot -persist|" "$out/bin/eplot"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with lib; {
|
||||||
description = "Create plots quickly with gnuplot";
|
description = "Create plots quickly with gnuplot";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
eplot ("easy gnuplot") is a ruby script which allows to pipe data easily
|
eplot ("easy gnuplot") is a ruby script which allows to pipe data easily
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{stdenv, fetchFromGitHub, libpng, libjpeg, giflib, perl, pkg-config}:
|
{ lib, stdenv, fetchFromGitHub, libpng, libjpeg, giflib, perl, pkg-config}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
pname = "metapixel";
|
pname = "metapixel";
|
||||||
@ -24,10 +24,10 @@ stdenv.mkDerivation {
|
|||||||
cp metapixel-sizesort $out/bin/metapixel-sizesort
|
cp metapixel-sizesort $out/bin/metapixel-sizesort
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/schani/metapixel";
|
homepage = "https://github.com/schani/metapixel";
|
||||||
description = "Tool for generating photomosaics";
|
description = "Tool for generating photomosaics";
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
maintainers = with maintainers; [ dandellion ];
|
# maintainers = with maintainers; [ dandellion ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{stdenv, fetchurl, jre_headless, minecraft-server }:
|
{ lib, stdenv, fetchurl, jre_headless, minecraft-server }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "minecraft-server-fabric";
|
pname = "minecraft-server-fabric";
|
||||||
@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
phases = "installPhase";
|
phases = "installPhase";
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with lib; {
|
||||||
description = "minecraft with the fabric modloader";
|
description = "minecraft with the fabric modloader";
|
||||||
license = licenses.unfree;
|
license = licenses.unfree;
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{stdenv, fetchFromGitHub, pkg-config, libusb1, libudev}:
|
{ lib, stdenv, fetchFromGitHub, pkg-config, libusb1, libudev}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
pname = "wii-u-gc-adapter";
|
pname = "wii-u-gc-adapter";
|
||||||
@ -14,7 +14,7 @@ stdenv.mkDerivation {
|
|||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [ pkg-config ];
|
||||||
buildInputs = [ libusb1 libudev ];
|
buildInputs = [ libusb1 libudev ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with lib; {
|
||||||
broken = true;
|
broken = true;
|
||||||
homepage = "https://github.com/ToadKing/wii-u-gc-adapter";
|
homepage = "https://github.com/ToadKing/wii-u-gc-adapter";
|
||||||
description = "Tool for using the Wii U GameCube Adapter on Linux";
|
description = "Tool for using the Wii U GameCube Adapter on Linux";
|
||||||
|
Loading…
Reference in New Issue
Block a user