mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 03:12:51 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
23 lines
527 B
Nix
23 lines
527 B
Nix
{ lib, stdenv, cmake, llvmPackages, llvm, irony }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "irony-server";
|
|
inherit (irony) src version;
|
|
|
|
nativeBuildInputs = [ cmake llvm ];
|
|
buildInputs = [ llvmPackages.libclang ];
|
|
|
|
dontUseCmakeBuildDir = true;
|
|
|
|
cmakeDir = "server";
|
|
|
|
meta = with lib; {
|
|
description = "The server part of irony";
|
|
mainProgram = "irony-server";
|
|
homepage = "https://melpa.org/#/irony";
|
|
maintainers = [ maintainers.deepfire ];
|
|
platforms = platforms.unix;
|
|
license = licenses.free;
|
|
};
|
|
}
|