1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00

wip: package itools

This commit is contained in:
2023-04-14 08:43:34 +02:00
parent 9456adc0b5
commit 2d063b0ac8
2 changed files with 20 additions and 4 deletions

View File

@@ -1,4 +1,9 @@
{ stdenv, fetchFromGitHub, cmake, lib }:
{
stdenv,
fetchFromGitHub,
cmake,
lib,
}:
stdenv.mkDerivation rec {
pname = "itl";
version = "0.8.0";

View File

@@ -1,4 +1,11 @@
{ stdenv, fetchFromGitHub, itl, lib, autoreconfHook }:
{
stdenv,
fetchFromGitHub,
itl,
lib,
# autoreconfHook,
automake,
}:
stdenv.mkDerivation rec {
pname = "itools";
version = "1.0";
@@ -8,8 +15,12 @@ stdenv.mkDerivation rec {
rev = version;
sha256 = "sha256-g9bsjupC4Sb5ywAgUNbjYLbHZ/i994lbNSnX2JyaP3g=";
};
preAutoreconf = "autoupdate";
nativeBuildInputs = [autoreconfHook];
# nativeBuildInputs = [autoreconfHook];
buildPhase = ''
touch ChangeLog
./configure
make
'';
buildInputs = [itl];
meta = {
homepage = "https://www.arabeyes.org/ITL";