summary refs log tree commit diff
path: root/pkgs/applications/editors/bvi/default.nix
diff options
context:
space:
mode:
authorDavid Rusu <davidrusu@gmail.com>2014-10-25 21:08:11 -0400
committerDavid Rusu <davidrusu@gmail.com>2014-10-25 21:08:11 -0400
commitd73ae615c503b9d98c565e2a97bd3a9828bd52f9 (patch)
tree34154ced0bb95a2dd026fb45667349dc8c7053c0 /pkgs/applications/editors/bvi/default.nix
parent67f8da419a06f08404d3ebd21f986a7bd1255f8a (diff)
parent8636d93f541547d83f4aca020dd72ac49207e2b0 (diff)
downloadnixpkgs-d73ae615c503b9d98c565e2a97bd3a9828bd52f9.tar
nixpkgs-d73ae615c503b9d98c565e2a97bd3a9828bd52f9.tar.gz
nixpkgs-d73ae615c503b9d98c565e2a97bd3a9828bd52f9.tar.bz2
nixpkgs-d73ae615c503b9d98c565e2a97bd3a9828bd52f9.tar.lz
nixpkgs-d73ae615c503b9d98c565e2a97bd3a9828bd52f9.tar.xz
nixpkgs-d73ae615c503b9d98c565e2a97bd3a9828bd52f9.tar.zst
nixpkgs-d73ae615c503b9d98c565e2a97bd3a9828bd52f9.zip
Merge https://github.com/NixOS/nixpkgs
Diffstat (limited to 'pkgs/applications/editors/bvi/default.nix')
-rw-r--r--pkgs/applications/editors/bvi/default.nix15
1 files changed, 9 insertions, 6 deletions
diff --git a/pkgs/applications/editors/bvi/default.nix b/pkgs/applications/editors/bvi/default.nix
index e598fa19c5e..f3f44f769a9 100644
--- a/pkgs/applications/editors/bvi/default.nix
+++ b/pkgs/applications/editors/bvi/default.nix
@@ -1,18 +1,21 @@
 { stdenv, fetchurl, ncurses }:
 
-stdenv.mkDerivation {
-  name = "bvi-1.3.2";
+stdenv.mkDerivation rec {
+  name = "bvi-${version}";
+  version = "1.4.0";
 
   src = fetchurl {
-    url = mirror://sourceforge/bvi/bvi-1.3.2.src.tar.gz;
-    sha256 = "110wxqnyianqamxq4y53drqqxb9vp4k2fcvic45qggvlqkqhlfgz";
+    url = "mirror://sourceforge/bvi/${name}.src.tar.gz";
+    sha256 = "00pq9rv7s8inqxq2m3xshxi58691i3pxw9smibcrgh6768l3qnh1";
   };
 
   buildInputs = [ ncurses ];
 
-  meta = { 
+  meta = with stdenv.lib; {
     description = "Hex editor with vim style keybindings";
     homepage = http://bvi.sourceforge.net/download.html;
-    license = stdenv.lib.licenses.gpl2;
+    license = licenses.gpl2;
+    maintainers = with maintainers; [ pSub ];
+    platforms = platforms.linux;
   };
 }