mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 16:43:58 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
40 lines
904 B
Nix
40 lines
904 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";
|
|
mainProgram = "mb2md";
|
|
license = licenses.publicDomain;
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.jb55 ];
|
|
};
|
|
}
|