2e6bf42a22
There ver very many conflicts, basically all due to name -> pname+version. Fortunately, almost everything was auto-resolved by kdiff3, and for now I just fixed up a couple evaluation problems, as verified by the tarball job. There might be some fallback to these conflicts, but I believe it should be minimal. Hydra nixpkgs: ?compare=1538299
20 lines
537 B
Nix
20 lines
537 B
Nix
{ stdenv, fetchurl, bison, flex }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "oidentd";
|
|
version = "2.4.0";
|
|
nativeBuildInputs = [ bison flex ];
|
|
|
|
src = fetchurl {
|
|
url = "https://files.janikrabe.com/pub/oidentd/releases/${version}/${pname}-${version}.tar.gz";
|
|
sha256 = "132bzlbjp437lrlxv5k9aqa1q9w5pghk02rnazg33cw6av00q2li";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Configurable Ident protocol server";
|
|
homepage = https://oidentd.janikrabe.com/;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|