Merge pull request #221289 from markbeep/ramfetch

ramfetch: init at 1.1.0
This commit is contained in:
superherointj
2023-03-18 13:57:58 -03:00
committed by GitHub
3 changed files with 41 additions and 0 deletions
+6
View File
@@ -9255,6 +9255,12 @@
github = "marius851000";
githubId = 22586596;
};
markbeep = {
email = "mrkswrn@gmail.com";
github = "markbeep";
githubId = 20665331;
name = "Mark";
};
markus1189 = {
email = "markus1189@gmail.com";
github = "markus1189";
+33
View File
@@ -0,0 +1,33 @@
{ lib
, stdenv
, fetchgit
}:
stdenv.mkDerivation rec {
name = "ramfetch";
version = "1.1.0";
src = fetchgit {
url = "https://codeberg.org/o69mar/ramfetch.git";
rev = "v${version}";
hash = "sha256-XUph+rTbw5LXWRq+OSKl0EjFac+MQAx3NBu4rWdWR3w=";
};
dontBuild = true;
installPhase = ''
runHook preInstall
install -D ramfetch $out/bin/ramfetch
runHook postInstall
'';
meta = {
description = "A tool which displays memory information";
homepage = "https://codeberg.org/o69mar/ramfetch";
platforms = lib.platforms.linux;
license = lib.licenses.mit;
maintainers = [ lib.maintainers.markbeep ];
};
}
+2
View File
@@ -11543,6 +11543,8 @@ with pkgs;
rambox = callPackage ../applications/networking/instant-messengers/rambox { };
ramfetch = callPackage ../tools/misc/ramfetch { };
rar = callPackage ../tools/archivers/rar { };
rarcrack = callPackage ../tools/security/rarcrack { };