summary refs log tree commit diff
path: root/pkgs/applications/misc/scim/default.nix
blob: 0014784abd12861fabc3e8e0033e8711b61a99d7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{ stdenv, fetchurl, yacc, ncurses, libxml2 }:

let
  version = "0.1.9";
in
stdenv.mkDerivation rec {

  name = "scim-${version}";

  src = fetchurl {
    url = "https://github.com/andmarti1424/sc-im/archive/v${version}.tar.gz";
    sha256 = "00rjz344acw0bxv78x1w9jz8snl9lb9qhr9z22phxinidnd3vaaz";
  };

  buildInputs = [ yacc ncurses libxml2 ];

  buildPhase = ''
    cd src

    sed "s,prefix=/usr,prefix=$out," Makefile
    sed "s,-I/usr/include/libxml2,-I$libxml2," Makefile

    make
    export DESTDIR=$out
  '';

  installPhase = ''
    make install prefix=
  '';

  meta = {
    homepage = "https://github.com/andmarti1424/scim";
    description = "SCIM - Spreadsheet Calculator Improvised - SC fork";
    license = {
      fullName = "SCIM License";
      url = "https://github.com/andmarti1424/scim/raw/master/LICENSE";
    };
    maintainers = [ stdenv.lib.maintainers.matthiasbeyer ];
    platforms = with stdenv.lib.platforms; linux; # Cannot test others
  };

}