mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 06:23:36 +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.
32 lines
967 B
Nix
32 lines
967 B
Nix
{ lib, stdenv, fetchurl, fetchpatch, pkg-config, ncurses, readline, autoreconfHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "abook";
|
|
version = "0.6.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://abook.sourceforge.net/devel/abook-${version}.tar.gz";
|
|
sha256 = "1yf0ifyjhq2r003pnpn92mn0924bn9yxjifxxj2ldcsgd7w0vagh";
|
|
};
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
url = "https://projects.archlinux.org/svntogit/packages.git/plain/trunk/gcc5.patch?h=packages/abook";
|
|
name = "gcc5.patch";
|
|
sha256 = "13n3qd6yy45i5n8ppjn9hj6y63ymjrq96280683xk7f7rjavw5nn";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [ pkg-config autoreconfHook ];
|
|
buildInputs = [ ncurses readline ];
|
|
|
|
meta = {
|
|
homepage = "http://abook.sourceforge.net/";
|
|
description = "Text-based addressbook program designed to use with mutt mail client";
|
|
license = lib.licenses.gpl2;
|
|
maintainers = [ lib.maintainers.edwtjo ];
|
|
platforms = with lib.platforms; unix;
|
|
mainProgram = "abook";
|
|
};
|
|
}
|