4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
39 lines
877 B
Nix
39 lines
877 B
Nix
{ lib, stdenv, fetchurl, makeWrapper, perlPackages }:
|
|
|
|
let
|
|
perlDeps = with perlPackages; [ TimeDate ];
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
version = "3.20";
|
|
pname = "mb2md";
|
|
|
|
src = fetchurl {
|
|
url = "http://batleth.sapienti-sat.org/projects/mb2md/mb2md-${version}.pl.gz";
|
|
sha256 = "0bvkky3c90738h3skd2f1b2yy5xzhl25cbh9w2dy97rs86ssjidg";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
buildInputs = [ perlPackages.perl ];
|
|
|
|
unpackPhase = ''
|
|
sourceRoot=.
|
|
gzip -d < $src > mb2md.pl
|
|
'';
|
|
|
|
installPhase = ''
|
|
install -D $sourceRoot/mb2md.pl $out/bin/mb2md
|
|
'';
|
|
|
|
postFixup = ''
|
|
wrapProgram $out/bin/mb2md \
|
|
--set PERL5LIB "${perlPackages.makePerlPath perlDeps}"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "mbox to maildir tool";
|
|
license = licenses.publicDomain;
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.jb55 ];
|
|
};
|
|
}
|