nixpkgs/pkgs/development/tools/cppclean/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
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.
2024-03-19 03:14:51 +01:00

32 lines
728 B
Nix

{ lib, fetchFromGitHub, python3Packages }:
with python3Packages;
buildPythonApplication rec {
pname = "cppclean";
version = "0.13";
src = fetchFromGitHub {
owner = "myint";
repo = "cppclean";
rev = "v${version}";
sha256 = "081bw7kkl7mh3vwyrmdfrk3fgq8k5laacx7hz8fjpchrvdrkqph0";
};
postUnpack = ''
patchShebangs .
'';
checkPhase = ''
./test.bash
'';
meta = with lib; {
description = "Finds problems in C++ source that slow development of large code bases";
mainProgram = "cppclean";
homepage = "https://github.com/myint/cppclean";
license = licenses.asl20;
maintainers = with maintainers; [ nthorne ];
platforms = platforms.linux;
};
}