nixpkgs/pkgs/applications/misc/sc-im/default.nix
Sandro Jäckel 33a395f195
yacc: deprecate alias
and add a new line after the alphabetically sorting to please my inner monk
2021-04-04 03:18:58 +02:00

57 lines
992 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, makeWrapper
, pkg-config
, which
, bison
, gnuplot
, libxls
, libxml2
, libzip
, ncurses
}:
stdenv.mkDerivation rec {
pname = "sc-im";
version = "0.8.1";
src = fetchFromGitHub {
owner = "andmarti1424";
repo = "sc-im";
rev = "v${version}";
sha256 = "sha256-AIYa3d1ml1f5GNLKijeFPX+UabgEqzdXiP60BGvBPsQ=";
};
sourceRoot = "${src.name}/src";
nativeBuildInputs = [
makeWrapper
pkg-config
which
bison
];
buildInputs = [
gnuplot
libxls
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;
};
}