about summary refs log tree commit diff
path: root/pkgs/applications/misc/vifm/default.nix
blob: 7230e84601e4a9172b77e729029aeea7c5821555 (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
{ pkgs, fetchurl, stdenv, ncurses, utillinux, file, libX11 }:

let
  name = "vifm-${version}";
  version = "0.7.5";

in stdenv.mkDerivation {
  inherit name;

  src = fetchurl {
    url="mirror://sourceforge/project/vifm/vifm/${name}.tar.bz2";
    sha256 ="1r1d92zrff94rfx011dw2qsgdwd2ksqlz15la74d6h7sfcsnyd01";
  };

  #phaseNames = ["doConfigure" "doMakeInstall"];
  buildInputs = [ utillinux ncurses file libX11 ];

  meta = {
    description = "A vi-like file manager";
    maintainers = with pkgs.lib.maintainers; [ raskin garbas ];
    platforms = pkgs.lib.platforms.linux;
    license = pkgs.lib.licenses.gpl2;
  };

  passthru = {
    updateInfo = {
      downloadPage = "http://vifm.sf.net";
    };
  };
}