1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 21:50:55 +00:00

vifm: fixups

This commit is contained in:
Joachim Fasting 2016-06-03 16:09:20 +02:00
parent 871c4d78e8
commit 5b9388a8ed
No known key found for this signature in database
GPG key ID: 4330820E1E04DCF4

View file

@ -1,24 +1,26 @@
{ pkgs, fetchurl, stdenv, ncurses, utillinux, file, libX11, which, groff }:
{ stdenv, fetchurl
, pkgconfig
, ncurses, libX11
, utillinux, file, which, groff
}:
let
stdenv.mkDerivation rec {
name = "vifm-${version}";
version = "0.8.1";
in stdenv.mkDerivation {
inherit name;
src = fetchurl {
url = "mirror://sourceforge/project/vifm/vifm/${name}.tar.bz2";
sha256 = "0yf3xc4czdrcbvmhq7d4xkck5phrmxwybmnv1zdb56qg56baq64r";
};
buildInputs = [ utillinux ncurses file libX11 which groff ];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ ncurses libX11 utillinux file which groff ];
meta = {
meta = with stdenv.lib; {
description = "A vi-like file manager";
maintainers = with pkgs.lib.maintainers; [ raskin garbas ];
platforms = pkgs.lib.platforms.linux;
license = pkgs.lib.licenses.gpl2;
maintainers = with maintainers; [ raskin garbas ];
platforms = platforms.linux;
license = licenses.gpl2;
};
passthru = {