nixpkgs/pkgs/applications/misc/sc-im/default.nix

57 lines
992 B
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
, makeWrapper
, pkg-config
, which
, bison
, gnuplot
, libxls
, libxml2
, libzip
, ncurses
}:
2015-03-01 13:37:28 +00:00
stdenv.mkDerivation rec {
pname = "sc-im";
2021-04-01 16:11:15 +00:00
version = "0.8.1";
2015-03-01 13:37:28 +00:00
src = fetchFromGitHub {
owner = "andmarti1424";
repo = "sc-im";
rev = "v${version}";
2021-04-01 16:11:15 +00:00
sha256 = "sha256-AIYa3d1ml1f5GNLKijeFPX+UabgEqzdXiP60BGvBPsQ=";
2015-03-01 13:37:28 +00:00
};
sourceRoot = "${src.name}/src";
2015-03-01 13:37:28 +00:00
nativeBuildInputs = [
makeWrapper
pkg-config
which
bison
];
2015-03-01 13:37:28 +00:00
buildInputs = [
gnuplot
libxls
libxml2
libzip
ncurses
];
2018-02-21 13:16:13 +00:00
makeFlags = [ "prefix=${placeholder "out"}" ];
2015-03-01 13:37:28 +00:00
postInstall = ''
wrapProgram "$out/bin/sc-im" --prefix PATH : "${lib.makeBinPath [ gnuplot ]}"
2015-03-01 13:37:28 +00:00
'';
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;
2015-03-01 13:37:28 +00:00
};
}