Merge pull request #189561 from mpscholten/init-ihp-new

This commit is contained in:
Sandro 2022-10-09 12:02:12 +02:00 committed by GitHub
commit 898f6ecd4d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 34 additions and 0 deletions

View 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;
};
}

View file

@ -16832,6 +16832,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 { };