Merge pull request #33298 from chreekat/perl-vidir

perl-vidir: init at 0.040
This commit is contained in:
Jörg Thalheim 2018-01-02 08:12:58 +01:00 committed by GitHub
commit 2563f7d2af
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 0 deletions

View file

@ -118,6 +118,7 @@
ChengCat = "Yucheng Zhang <yu@cheng.cat>";
choochootrain = "Hurshal Patel <hurshal@imap.cc>";
chpatrick = "Patrick Chilton <chpatrick@gmail.com>";
chreekat = "Bryan Richter <b@chreekat.net>";
chris-martin = "Chris Martin <ch.martin@gmail.com>";
chrisjefferson = "Christopher Jefferson <chris@bubblescope.net>";
chrisrosset = "Christopher Rosset <chris@rosset.org.uk>";

View file

@ -15645,6 +15645,25 @@ let self = _self // overrides; _self = with self; {
};
};
vidir = buildPerlPackage rec {
name = "vidir-0.040";
src = fetchurl {
url = "mirror://cpan/authors/id/W/WO/WOLDRICH/App-${name}-woldrich.tar.gz";
sha256 = "0c97yx33pyhskbmwpqbwlkxr85awd6kg1baibvqkarhhvc8v7l0h";
};
# NB: This preInstall a workaround for a problem that is fixed in HEAD.
preInstall = ''
sed -i -e '/^use encoding/d' bin/vidir
'';
outputs = [ "out" ];
meta = {
maintainers = [ maintainers.chreekat ];
homepage = "http://search.cpan.org/~woldrich/App-vidir/bin/vidir";
description = "Edit a directory in $EDITOR";
license = with stdenv.lib.licenses; [ gpl1 ];
};
};
VMEC2 = buildPerlModule rec {
name = "VM-EC2-1.28";
src = fetchurl {