Merge master into staging-next

This commit is contained in:
github-actions[bot]
2021-05-22 12:27:09 +00:00
committed by GitHub
22 changed files with 550 additions and 26 deletions

View File

@@ -0,0 +1,29 @@
{ lib, stdenvNoCC, fetchFromGitHub, bash, scdoc }:
stdenvNoCC.mkDerivation rec {
pname = "fetchutils";
version = "unstable-2021-03-16";
src = fetchFromGitHub {
owner = "lptstr";
repo = pname;
rev = "882781a297e86f4ad4eaf143e0777fb3e7c69526";
sha256 = "sha256-ONrVZC6GBV5v3TeBekW9ybZjDHF3FNyXw1rYknqKRbk=";
};
buildInputs = [ bash scdoc ];
installFlags = [ "DESTDIR=$(out)" "PREFIX=" ];
postPatch = ''
patchShebangs --host src/*
'';
meta = with lib; {
description = "A collection of small shell utilities to fetch system information";
homepage = "https://github.com/lptstr/fetchutils";
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [ fortuneteller2k ];
};
}

View File

@@ -2,12 +2,12 @@
stdenv.mkDerivation rec {
pname = "nixos-generators";
version = "1.2.0";
version = "1.3.0";
src = fetchFromGitHub {
owner = "nix-community";
repo = "nixos-generators";
rev = version;
sha256 = "1iwc39hzvzzyndxwbnl3fck7phxnjpnhy8zn4nyp8is1fiw0648v";
sha256 = "1gbj2jw7zv3mnq1lyj4q53jpfj642jy7lvg0kp060znvhws3370y";
};
nativeBuildInputs = [ makeWrapper ];
installFlags = [ "PREFIX=$(out)" ];