Merge pull request #72922 from davidak/fix_versions
Fix package metadata like version and homepage
This commit is contained in:
@@ -1,16 +1,14 @@
|
||||
{ stdenv, fetchurl, python, pythonPackages, libxslt, libxml2, makeWrapper }:
|
||||
|
||||
let
|
||||
rev = "9de21094a8cf565bdfcf75688e121a5ad1f5397b";
|
||||
in
|
||||
{ stdenv, fetchFromGitHub, python, pythonPackages, libxslt, libxml2, makeWrapper }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "venus-${rev}";
|
||||
pname = "venus";
|
||||
version = "unstable-2011-02-18";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/rubys/venus/tarball/${rev}";
|
||||
name = "${name}.tar.bz";
|
||||
sha256 = "0lsc9d83grbi3iwm8ppaig4h9vbmd5h4vvz83lmpnyp7zqfka7dy";
|
||||
src = fetchFromGitHub {
|
||||
owner = "rubys";
|
||||
repo = "venus";
|
||||
rev = "9de21094a8cf565bdfcf75688e121a5ad1f5397b";
|
||||
sha256 = "10yyx4jaxxbwhica12aiw119aywghcr7b24gs9lrmafpa6xd3an2";
|
||||
};
|
||||
|
||||
preConfigure = ''
|
||||
|
||||
@@ -32,7 +32,7 @@ stdenv.mkDerivation {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Use Vim as PAGER";
|
||||
homepage = "https://www.vim.org/scripts/script.php?script_id = 1723";
|
||||
homepage = "https://www.vim.org/scripts/script.php?script_id=1723";
|
||||
license = with licenses; [ bsd2 mit vim ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user