fetch-scm: init at 0.1.5

This commit is contained in:
llathasa-veleth 2023-03-23 22:56:56 +03:00
parent e400f93529
commit 6efc090d5c
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ lib, stdenv, fetchFromGitHub, guile }:
stdenv.mkDerivation rec {
pname = "fetch-scm";
version = "0.1.5";
src = fetchFromGitHub {
owner = "KikyTokamuro";
repo = "fetch.scm";
rev = "v${version}";
sha256 = "sha256-H89VCNAYnTwVEqyInATvLHIB7ioe2zvIGTAM2MUo7+g=";
};
dontBuild = true;
buildInputs = [ guile ];
installPhase = ''
runHook preInstall
install -Dm555 fetch.scm $out/bin/fetch-scm
runHook postInstall
'';
meta = with lib; {
description = "System information fetcher written in GNU Guile Scheme";
homepage = "https://github.com/KikyTokamuro/fetch.scm";
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ vel ];
};
}

View file

@ -4715,6 +4715,8 @@ with pkgs;
fdroidserver = python3Packages.callPackage ../development/tools/fdroidserver { };
fetch-scm = callPackage ../tools/misc/fetch-scm { };
filebench = callPackage ../tools/misc/filebench { };
filebot = callPackage ../applications/video/filebot { };