mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-08 22:14:34 +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.
37 lines
975 B
Nix
37 lines
975 B
Nix
{ lib, stdenv, fetchFromGitHub, fetchpatch, bison, flex }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "olsrd";
|
|
version = "0.9.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "OLSR";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1xk355dm5pfjil1j4m724vkdnc178lv6hi6s1g0xgpd59avbx90j";
|
|
};
|
|
|
|
patches = [
|
|
# remove if there's ever an upstream release that incorporates
|
|
# https://github.com/OLSR/olsrd/pull/87
|
|
(fetchpatch {
|
|
url = "https://raw.githubusercontent.com/openwrt-routing/packages/b3897386771890ba1b15f672c2fed58630beedef/olsrd/patches/011-bison.patch";
|
|
sha256 = "04cl4b8dpr1yjs7wa94jcszmkdzpnrn719a5m9nhm7lvfrn1rzd0";
|
|
})
|
|
];
|
|
|
|
buildInputs = [ bison flex ];
|
|
|
|
preConfigure = ''
|
|
makeFlags="prefix=$out ETCDIR=$out/etc"
|
|
'';
|
|
|
|
meta = {
|
|
description = "Adhoc wireless mesh routing daemon";
|
|
license = lib.licenses.bsd3;
|
|
homepage = "http://olsr.org/";
|
|
maintainers = [ ];
|
|
platforms = with lib.platforms; linux;
|
|
};
|
|
}
|