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
843 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-02-15 08:57:21 +00:00
version = "1.0.1";
2022-09-03 08:22:36 +00:00
src = fetchFromGitHub {
owner = "digitallyinduced";
repo = "ihp";
rev = "v${version}";
2023-02-15 08:57:21 +00:00
sha256 = "sha256-LUIC7Olu2qTxZwgkgVpmTgCEQYDlwvLQFQt3Ox/Vm48=";
2022-09-03 08:22:36 +00:00
};
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;
};
}