Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 29 lines 590 B view raw
1{ 2 lib, 3 stdenv, 4 fetchurl, 5 bison, 6 flex, 7}: 8 9stdenv.mkDerivation rec { 10 pname = "oidentd"; 11 version = "3.1.0"; 12 nativeBuildInputs = [ 13 bison 14 flex 15 ]; 16 17 src = fetchurl { 18 url = "https://files.janikrabe.com/pub/oidentd/releases/${version}/${pname}-${version}.tar.gz"; 19 sha256 = "sha256-yyvcnabxNkcIMOiZBjvoOm/pEjrGXFt4W4SG5lprkbc="; 20 }; 21 22 meta = with lib; { 23 description = "Configurable Ident protocol server"; 24 mainProgram = "oidentd"; 25 homepage = "https://oidentd.janikrabe.com/"; 26 license = licenses.gpl2Only; 27 platforms = platforms.linux; 28 }; 29}