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

1 Commits

Author SHA1 Message Date
2d063b0ac8 wip: package itools 2023-04-14 08:43:34 +02:00
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 { stdenv.mkDerivation rec {
pname = "itl"; pname = "itl";
version = "0.8.0"; version = "0.8.0";

View File

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