mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
59 lines
1 KiB
Nix
59 lines
1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, makeWrapper
|
|
, pkg-config
|
|
, which
|
|
, bison
|
|
, gnuplot
|
|
, libxls
|
|
, libxlsxwriter
|
|
, libxml2
|
|
, libzip
|
|
, ncurses
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "sc-im";
|
|
version = "0.8.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "andmarti1424";
|
|
repo = "sc-im";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-H+GQUpouiXc/w6GWdkSVvTXZ/Dtb7sUmBLGcpxG3Mts=";
|
|
};
|
|
|
|
sourceRoot = "${src.name}/src";
|
|
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
pkg-config
|
|
which
|
|
bison
|
|
];
|
|
|
|
buildInputs = [
|
|
gnuplot
|
|
libxls
|
|
libxlsxwriter
|
|
libxml2
|
|
libzip
|
|
ncurses
|
|
];
|
|
|
|
makeFlags = [ "prefix=${placeholder "out"}" ];
|
|
|
|
postInstall = ''
|
|
wrapProgram "$out/bin/sc-im" --prefix PATH : "${lib.makeBinPath [ gnuplot ]}"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/andmarti1424/sc-im";
|
|
description = "An ncurses spreadsheet program for terminal";
|
|
license = licenses.bsdOriginal;
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|