nixpkgs/pkgs/development/web/ihp-new/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
848 B
Nix
Raw Normal View History

2022-09-03 08:22:36 +00:00
{ lib, stdenv, fetchFromGitHub, git, makeWrapper }:
stdenv.mkDerivation rec {
pname = "ihp-new";
2023-12-15 20:30:59 +00:00
version = "1.2.0";
2022-09-03 08:22:36 +00:00
src = fetchFromGitHub {
owner = "digitallyinduced";
repo = "ihp";
rev = "v${version}";
2023-12-15 20:30:59 +00:00
sha256 = "sha256-oQz7ZBrHe6WwYMwnxxUgnYM55CuH5Oxjz6mrLnYbB7U=";
2022-09-03 08:22:36 +00:00
};
dontConfigure = true;
sourceRoot = "${src.name}/ProjectGenerator";
2022-09-03 08:22:36 +00:00
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;
};
}