mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
ce1c1e3093
With this patch I remove myself as a maintainer for all packages I currently maintain. This is due the fact that I will be basically off the grid from May 2018 until early 2019, as I will be on a trip through north america. I will revert this patch as soon as I'm back, as I plan to continue contributing to nixpkgs then. But as I cannot maintain anything during that time, I'd like to get this patch merged. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
33 lines
693 B
Nix
33 lines
693 B
Nix
{ stdenv, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.2.0";
|
|
name = "vimer-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "susam";
|
|
repo = "vimer";
|
|
rev = version;
|
|
sha256 = "01qhr3i7wasbaxvms39c81infpry2vk0nzh7r5m5b9p713p0phsi";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir $out/bin/ -p
|
|
cp vimer $out/bin/
|
|
chmod +x $out/bin/vimer
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/susam/vimer;
|
|
description = ''
|
|
A convenience wrapper for gvim/mvim --remote(-tab)-silent to open files
|
|
in an existing instance of GVim or MacVim.
|
|
'';
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
platforms = platforms.linux;
|
|
};
|
|
|
|
}
|
|
|