fix stdenv deprications
This commit is contained in:
parent
4d99a375f0
commit
447aeca1ed
8 changed files with 9 additions and 10 deletions
|
@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
|||
install -m 755 -D linux-amd64/helm $out/bin/helm2
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://helm.sh";
|
||||
description = "helms depricated v2 verison";
|
||||
platforms = platforms.linux;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitHub, python38Packages, wrapQtAppsHook }:
|
||||
{ stdenv, lib, fetchFromGitHub, python38Packages, wrapQtAppsHook }:
|
||||
|
||||
python38Packages.buildPythonApplication rec {
|
||||
pname = "nagstamon";
|
||||
|
@ -11,7 +11,6 @@ python38Packages.buildPythonApplication rec {
|
|||
sha256 = "1l095halb55qinaik51p3lxiln1s034dr28k7ra6xzrrv9l1x1xw";
|
||||
};
|
||||
|
||||
# Test assumes darwin
|
||||
doCheck = false;
|
||||
|
||||
nativeBuildInputs = [ wrapQtAppsHook ];
|
||||
|
@ -34,7 +33,7 @@ python38Packages.buildPythonApplication rec {
|
|||
xlib
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A status monitor for the desktop";
|
||||
homepage = "https://nagstamon.ifw-dresden.de/";
|
||||
license = licenses.gpl2;
|
||||
|
|
|
@ -20,7 +20,7 @@ rustPlatform.buildRustPackage rec {
|
|||
];
|
||||
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "An email tagger for notmuch";
|
||||
homepage = "https://ghom.niij.org/eaon/notcoal";
|
||||
};
|
||||
|
|
|
@ -20,7 +20,7 @@ stdenv.mkDerivation {
|
|||
install -m 755 -D oc $out/bin/oc3
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://www.odk.io";
|
||||
description = "openshift311 client";
|
||||
platforms = platforms.linux;
|
||||
|
|
|
@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
|||
install -m 755 -D oc $out/bin/oc
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://www.odk.io";
|
||||
description = "openshift 4.6 client";
|
||||
platforms = platforms.linux;
|
||||
|
|
|
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
|||
install -m 755 -D openshift-install $out/bin/openshift-install
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://www.odk.io";
|
||||
description = "openshift 4.5 installer";
|
||||
platforms = platforms.linux;
|
||||
|
|
|
@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
|||
ls -lah $out/bin/skaffold
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://skaffold.dev";
|
||||
description = "skaffold";
|
||||
platforms = platforms.linux;
|
||||
|
|
|
@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
|
|||
install -m 755 -D vault-sink-linux-amd64 $out/bin/sink
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/cookiefactory/vault-sink";
|
||||
description = "Vault Secret helper for yaml files";
|
||||
platforms = platforms.linux;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue