mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
vifm: fixups
This commit is contained in:
parent
871c4d78e8
commit
5b9388a8ed
@ -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}";
|
name = "vifm-${version}";
|
||||||
version = "0.8.1";
|
version = "0.8.1";
|
||||||
|
|
||||||
in stdenv.mkDerivation {
|
|
||||||
inherit name;
|
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/project/vifm/vifm/${name}.tar.bz2";
|
url = "mirror://sourceforge/project/vifm/vifm/${name}.tar.bz2";
|
||||||
sha256 = "0yf3xc4czdrcbvmhq7d4xkck5phrmxwybmnv1zdb56qg56baq64r";
|
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";
|
description = "A vi-like file manager";
|
||||||
maintainers = with pkgs.lib.maintainers; [ raskin garbas ];
|
maintainers = with maintainers; [ raskin garbas ];
|
||||||
platforms = pkgs.lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
license = pkgs.lib.licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
};
|
};
|
||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
|
Loading…
Reference in New Issue
Block a user