mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 11:40:45 +00:00
mo: init at 3.5.0
This commit is contained in:
parent
3a26dad1bd
commit
31f935b59e
36
pkgs/by-name/mo/mo/package.nix
Normal file
36
pkgs/by-name/mo/mo/package.nix
Normal file
|
@ -0,0 +1,36 @@
|
|||
{ stdenv
|
||||
, lib
|
||||
, fetchFromGitHub
|
||||
, runtimeShell
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "mo";
|
||||
version = "3.0.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "tests-always-included";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
hash = "sha256-CFAvTpziKzSkdomvCf8PPXYbYcJxjB4EValz2RdD2b0=";
|
||||
};
|
||||
|
||||
dontConfigure = true;
|
||||
dontBuild = true;
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
mkdir -p $out/bin
|
||||
cp mo $out/bin/.
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Moustache templates for Bash";
|
||||
homepage = "https://github.com/tests-always-included/mo";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ sheepforce ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue