Merge pull request #131947 from SuperSandro2000/staging-cleanup

This commit is contained in:
Sandro
2021-07-29 13:30:44 +00:00
committed by GitHub
9 changed files with 37 additions and 33 deletions
+2 -3
View File
@@ -2,13 +2,12 @@
buildGoPackage rec {
pname = "hologram";
version = "2018-03-19";
rev = "a7bab58642b530edb75b9cf6c1d834c85822ceac";
version = "unstable-2018-03-19";
src = fetchFromGitHub {
owner = "AdRoll";
repo = "hologram";
inherit rev;
rev = "a7bab58642b530edb75b9cf6c1d834c85822ceac";
sha256 = "00scryz8js6gbw8lp2y23qikbazz2dd992r97rqh0l1q4baa0ckn";
};
+9 -10
View File
@@ -2,7 +2,7 @@
stdenv.mkDerivation {
pname = "mbox";
version = "20140526";
version = "unstable-2014-05-26";
src = fetchFromGitHub {
owner = "tsgates";
@@ -28,13 +28,12 @@ stdenv.mkDerivation {
./testall.sh
'';
meta = with lib;
{ description = "Lightweight sandboxing mechanism that any user can use without special privileges";
homepage = "http://pdos.csail.mit.edu/mbox/";
maintainers = with maintainers; [ ehmry ];
license = licenses.bsd3;
platforms = [ "x86_64-linux" ];
broken = true;
};
meta = with lib; {
description = "Lightweight sandboxing mechanism that any user can use without special privileges";
homepage = "http://pdos.csail.mit.edu/mbox/";
maintainers = with maintainers; [ ehmry ];
license = licenses.bsd3;
platforms = [ "x86_64-linux" ];
broken = true;
};
}
+5 -5
View File
@@ -2,7 +2,7 @@
stdenv.mkDerivation {
pname = "meo";
version = "20121113";
version = "unstable-2012-11-13";
src = fetchhg {
url = "http://oss.stamfest.net/hg/meo";
@@ -25,12 +25,12 @@ stdenv.mkDerivation {
cp meo-gui/meo-gui $out/bin
'';
meta = {
meta = with lib; {
homepage = "http://oss.stamfest.net/wordpress/meo-multiple-eyepairs-only";
description = "Tools to use cryptography for things like four-eyes principles";
license = lib.licenses.agpl3Plus;
maintainers = with lib.maintainers; [viric];
platforms = with lib.platforms; linux;
license = licenses.agpl3Plus;
maintainers = with maintainers; [ viric ];
platforms = platforms.linux;
broken = true;
};
}
+11 -6
View File
@@ -1,17 +1,22 @@
{lib, stdenv, fetchurl, autoreconfHook}:
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
stdenv.mkDerivation rec {
pname = "pwgen";
version = "2.08";
src = fetchurl {
url = "https://github.com/tytso/pwgen/archive/v${version}.tar.gz";
sha256 = "8d6e94f28655e61d6126290e3eafad4d17d7fba0d0d354239522a740a270bb2f";
src = fetchFromGitHub {
owner = "tytso";
repo = "pwgen";
rev = "v${version}";
sha256 = "8d6e94f58655e61d6126290e3eafad4d17d7fba0d0d354239522a740a270bb2f";
};
nativeBuildInputs = [ autoreconfHook ];
meta = {
meta = with lib; {
description = "Password generator which creates passwords which can be easily memorized by a human";
platforms = lib.platforms.all;
maintainers = with maintainers; [ ];
license = with licenses; [ gpl2Only ];
platforms = platforms.all;
};
}
+1 -4
View File
@@ -1,11 +1,8 @@
{ stdenv, lib, fetchurl, openssl, fetchpatch, static ? stdenv.hostPlatform.isStatic }:
let
stdenv.mkDerivation rec {
pname = "ipmitool";
version = "1.8.18";
in
stdenv.mkDerivation {
inherit pname version;
src = fetchurl {
url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz";
+4 -1
View File
@@ -1,17 +1,20 @@
{ lib, stdenv, fetchgit, ... }:
{ lib, stdenv, fetchgit }:
stdenv.mkDerivation {
pname = "loadwatch";
version = "1.1-1-g6d2544c";
src = fetchgit {
url = "git://woffs.de/git/fd/loadwatch.git";
sha256 = "1bhw5ywvhyb6snidsnllfpdi1migy73wg2gchhsfbcpm8aaz9c9b";
rev = "6d2544c0caaa8a64bbafc3f851e06b8056c30e6e";
};
installPhase = ''
mkdir -p $out/bin
install loadwatch lw-ctl $out/bin
'';
meta = with lib; {
description = "Run a program using only idle cycles";
license = licenses.gpl2;
+2 -1
View File
@@ -2,7 +2,7 @@
buildGoPackage rec {
pname = "localtime";
version = "2017-11-07";
version = "unstable-2017-11-07";
src = fetchFromGitHub {
owner = "Stebalien";
@@ -32,6 +32,7 @@ buildGoPackage rec {
meta = with lib; {
description = "A daemon for keeping the system timezone up-to-date based on the current location";
homepage = "https://github.com/Stebalien/localtime";
maintainers = with maintainers; [ ];
platforms = platforms.linux;
license = licenses.gpl3;
};
+1 -1
View File
@@ -2,7 +2,7 @@
stdenv.mkDerivation {
pname = "opencl-info";
version = "2014-02-21";
version = "unstable-2014-02-21";
src = fetchFromGitHub {
owner = "marchv";
+2 -2
View File
@@ -2,12 +2,12 @@
stdenv.mkDerivation {
pname = "rowhammer-test";
version = "20150811";
version = "unstable-2015-08-11";
src = fetchFromGitHub {
owner = "google";
repo = "rowhammer-test";
rev = "c1d2bd9f629281402c10bb10e52bc1f1faf59cc4"; # 2015-08-11
rev = "c1d2bd9f629281402c10bb10e52bc1f1faf59cc4";
sha256 = "1fbfcnm5gjish47wdvikcsgzlb5vnlfqlzzm6mwiw2j5qkq0914i";
};