ihp-new: init at 0.20.0
This commit is contained in:
parent
f55ad958b9
commit
da85791219
2 changed files with 34 additions and 0 deletions
32
pkgs/development/web/ihp-new/default.nix
Normal file
32
pkgs/development/web/ihp-new/default.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{ lib, stdenv, fetchFromGitHub, git, makeWrapper }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "ihp-new";
|
||||
version = "0.20.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "digitallyinduced";
|
||||
repo = "ihp";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-fvFRBnMnFGsPleVv5aPfuoP1UzjnBel0NiNULFP+GkI=";
|
||||
};
|
||||
|
||||
dontConfigure = true;
|
||||
sourceRoot = "source/ProjectGenerator";
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
|
||||
installPhase = ''
|
||||
install -Dm755 bin/ihp-new -t $out/bin
|
||||
wrapProgram $out/bin/ihp-new \
|
||||
--suffix PATH ":" "${lib.makeBinPath [ git ]}";
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Project generator for the IHP (Integrated Haskell Platform) web framework";
|
||||
homepage = "https://ihp.digitallyinduced.com";
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.mpscholten ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
|
@ -16457,6 +16457,8 @@ with pkgs;
|
|||
|
||||
insomnia = callPackage ../development/web/insomnia { };
|
||||
|
||||
ihp-new = callPackage ../development/web/ihp-new { };
|
||||
|
||||
iozone = callPackage ../development/tools/misc/iozone { };
|
||||
|
||||
itstool = callPackage ../development/tools/misc/itstool { };
|
||||
|
|
Loading…
Reference in a new issue