summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRahul Gopinath <rahul@gopinath.org>2017-03-26 09:09:02 -0700
committerRahul Gopinath <rahul@gopinath.org>2017-03-26 09:09:02 -0700
commitfb50abba2e0c8738b3a92142488e57ef3c631495 (patch)
tree152d67c433cf7172a3f72f3b0ecd73d4e85cf776 /pkgs
parent955b79f4629dd7ea8ba6b234c043b97e4ed5e5f5 (diff)
downloadnixpkgs-fb50abba2e0c8738b3a92142488e57ef3c631495.tar
nixpkgs-fb50abba2e0c8738b3a92142488e57ef3c631495.tar.gz
nixpkgs-fb50abba2e0c8738b3a92142488e57ef3c631495.tar.bz2
nixpkgs-fb50abba2e0c8738b3a92142488e57ef3c631495.tar.lz
nixpkgs-fb50abba2e0c8738b3a92142488e57ef3c631495.tar.xz
nixpkgs-fb50abba2e0c8738b3a92142488e57ef3c631495.tar.zst
nixpkgs-fb50abba2e0c8738b3a92142488e57ef3c631495.zip
vis: 2016-10-09 -> 0.3
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/editors/vis/default.nix11
1 files changed, 4 insertions, 7 deletions
diff --git a/pkgs/applications/editors/vis/default.nix b/pkgs/applications/editors/vis/default.nix
index f6760895b57..921018531ea 100644
--- a/pkgs/applications/editors/vis/default.nix
+++ b/pkgs/applications/editors/vis/default.nix
@@ -1,18 +1,15 @@
 { stdenv, fetchFromGitHub, pkgconfig, makeWrapper, makeDesktopItem
 , ncurses, libtermkey, lpeg, lua
 , acl ? null, libselinux ? null
-, version ? "2016-10-09"
-, rev ? "b0c9b0063d0b9ed9a7f93c69779749130b353ff1"
-, sha256 ? "0g3242g3r2w38ld3w71f79qp7zzy3zhanff2nhwkwmyq89js8s90"
 }:
 
 stdenv.mkDerivation rec {
-  name = "vis-unstable-${version}";
-  inherit version;
+  name = "vis-${version}";
+  version  = "0.3";
 
   src = fetchFromGitHub {
-    inherit sha256;
-    inherit rev;
+    rev = "v${version}";
+    sha256 = "13xyyq30dg66v4azl2jvlyfyglxmc3r9p7p87vrganq0p6lmb0bk";
     repo = "vis";
     owner = "martanne";
   };