Merge master into staging-next

This commit is contained in:
github-actions[bot]
2021-03-22 12:26:55 +00:00
committed by GitHub
38 changed files with 356 additions and 183 deletions
+2 -2
View File
@@ -4,13 +4,13 @@
stdenv.mkDerivation rec {
pname = "disfetch";
version = "1.20";
version = "1.21";
src = fetchFromGitHub {
owner = "llathasa-veleth";
repo = "disfetch";
rev = version;
sha256 = "sha256-P5Sq8ld6pPACHn7iOJ9Uk+zR8ZLxHVvnRyFfkfGGv6I=";
sha256 = "sha256-AAfpv1paEnHu1S2B8yC0hyYOj5deKTkCyLGvp6Roz64=";
};
dontBuild = true;
+8 -6
View File
@@ -2,26 +2,28 @@
stdenvNoCC.mkDerivation rec {
pname = "fet-sh";
version = "1.8";
version = "1.9";
src = fetchFromGitHub {
owner = "6gk";
repo = "fet.sh";
rev = "v${version}";
sha256 = "1czjsyagwzbf8l023l1saz9ssb1hc245a64nfwc8wl0cn4h9byky";
sha256 = "sha256-xhX2nVteC3T3IjQh++mYlm0btDJQbyQa6b8sGualV0E=";
};
dontBuild = true;
postPatch = ''
patchShebangs fet.sh
'';
installPhase = ''
install -m755 -D ./fet.sh $out/bin/fet.sh
install -m755 -D fet.sh $out/bin/fet.sh
'';
meta = with lib; {
description = "A fetch written in posix shell without any external commands (linux only)";
description = "A fetch written in posix shell without any external commands";
homepage = "https://github.com/6gk/fet.sh";
license = licenses.isc;
platforms = platforms.linux;
platforms = platforms.all;
maintainers = with maintainers; [ elkowar ];
};
+1 -1
View File
@@ -31,7 +31,7 @@ buildPythonApplication rec {
meta = with lib; {
homepage = "https://github.com/kubespray/kargo-cli";
description = "A tool helps to deploy a kubernetes cluster with Ansible";
platforms = platforms.linux;
platforms = platforms.all;
license = licenses.gpl3;
maintainers = with maintainers; [ ];
};
+1 -1
View File
@@ -29,6 +29,6 @@ python3Packages.buildPythonApplication {
homepage = "https://blog.didierstevens.com/programs/pdf-tools/";
license = licenses.publicDomain;
maintainers = [ maintainers.lightdiscord ];
platforms = platforms.linux;
platforms = platforms.all;
};
}
+1 -1
View File
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
'';
homepage = "https://github.com/graysky2/profile-cleaner";
license = lib.licenses.mit;
platforms = lib.platforms.linux;
platforms = lib.platforms.all;
maintainers = [ lib.maintainers.devhell ];
};
}
+3 -5
View File
@@ -1,7 +1,7 @@
{ lib, stdenv, fetchFromGitHub, makeWrapper
{ lib, stdenvNoCC, fetchFromGitHub, makeWrapper
, trash-cli, coreutils, which, getopt }:
stdenv.mkDerivation rec {
stdenvNoCC.mkDerivation rec {
pname = "rmtrash";
version = "1.14";
@@ -12,9 +12,6 @@ stdenv.mkDerivation rec {
sha256 = "0wfb2ykzlsxyqn9krfsis9jxhaxy3pxl71a4f15an1ngfndai694";
};
dontConfigure = true;
dontBuild = true;
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
@@ -35,5 +32,6 @@ stdenv.mkDerivation rec {
'';
license = licenses.gpl3Plus;
maintainers = with maintainers; [ peelz ];
platforms = platforms.all;
};
}