mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
fetch-scm: init at 0.1.5
This commit is contained in:
parent
e400f93529
commit
6efc090d5c
2 changed files with 33 additions and 0 deletions
31
pkgs/tools/misc/fetch-scm/default.nix
Normal file
31
pkgs/tools/misc/fetch-scm/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue