evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / cu / cunit / package.nix
blobaf623c659d513e399ae0ae2389f52e7fca377fd7
1 { lib, stdenv, fetchurl, autoconf, automake, libtool, autoreconfHook}:
3 stdenv.mkDerivation rec {
4   pname = "CUnit";
5   version = "2.1-3";
7   nativeBuildInputs = [ autoreconfHook autoconf automake ];
8   buildInputs = [libtool];
10   src = fetchurl {
11     url = "mirror://sourceforge/cunit/CUnit/${version}/CUnit-${version}.tar.bz2";
12     sha256 = "057j82da9vv4li4z5ri3227ybd18nzyq81f6gsvhifs5z0vr3cpm";
13   };
15   meta = {
16     description = "Unit Testing Framework for C";
18     longDescription = ''
19       CUnit is a lightweight system for writing, administering, and running
20       unit tests in C.  It provides C programmers a basic testing functionality
21       with a flexible variety of user interfaces.
22     '';
24     homepage = "https://cunit.sourceforge.net/";
26     license = lib.licenses.lgpl2;
27     platforms = lib.platforms.unix;
28   };