2021-03-20 11:35:55 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, makeWrapper
|
|
|
|
, pkg-config
|
|
|
|
, which
|
|
|
|
, yacc
|
|
|
|
, gnuplot
|
|
|
|
, libxls
|
|
|
|
, libxml2
|
|
|
|
, libzip
|
|
|
|
, ncurses
|
|
|
|
}:
|
2015-03-01 13:37:28 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "sc-im";
|
2021-04-01 17:11:15 +01:00
|
|
|
version = "0.8.1";
|
2015-03-01 13:37:28 +00:00
|
|
|
|
2016-02-07 13:42:22 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "andmarti1424";
|
|
|
|
repo = "sc-im";
|
|
|
|
rev = "v${version}";
|
2021-04-01 17:11:15 +01:00
|
|
|
sha256 = "sha256-AIYa3d1ml1f5GNLKijeFPX+UabgEqzdXiP60BGvBPsQ=";
|
2015-03-01 13:37:28 +00:00
|
|
|
};
|
|
|
|
|
2021-03-20 11:35:55 +00:00
|
|
|
sourceRoot = "${src.name}/src";
|
2015-03-01 13:37:28 +00:00
|
|
|
|
2021-03-20 11:35:55 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
makeWrapper
|
|
|
|
pkg-config
|
|
|
|
which
|
|
|
|
yacc
|
|
|
|
];
|
2015-03-01 13:37:28 +00:00
|
|
|
|
2021-03-20 11:35:55 +00:00
|
|
|
buildInputs = [
|
|
|
|
gnuplot
|
|
|
|
libxls
|
|
|
|
libxml2
|
|
|
|
libzip
|
|
|
|
ncurses
|
|
|
|
];
|
2018-02-21 13:16:13 +00:00
|
|
|
|
2021-03-20 11:35:55 +00:00
|
|
|
makeFlags = [ "prefix=${placeholder "out"}" ];
|
2015-03-01 13:37:28 +00:00
|
|
|
|
2021-03-20 11:35:55 +00:00
|
|
|
postInstall = ''
|
|
|
|
wrapProgram "$out/bin/sc-im" --prefix PATH : "${lib.makeBinPath [ gnuplot ]}"
|
2015-03-01 13:37:28 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/andmarti1424/sc-im";
|
2021-03-20 11:35:55 +00:00
|
|
|
description = "An ncurses spreadsheet program for terminal";
|
2016-02-07 13:42:22 +00:00
|
|
|
license = licenses.bsdOriginal;
|
2021-03-20 11:35:55 +00:00
|
|
|
maintainers = with maintainers; [ dotlambda ];
|
2018-05-23 16:49:02 +01:00
|
|
|
platforms = platforms.unix;
|
2015-03-01 13:37:28 +00:00
|
|
|
};
|
|
|
|
}
|