mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 18:37:04 +03:00
commit
30f1c9da75
17
pkgs/development/libraries/cpptest/default.nix
Normal file
17
pkgs/development/libraries/cpptest/default.nix
Normal file
@ -0,0 +1,17 @@
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "cpptest-1.1.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://downloads.sourceforge.net/project/cpptest/cpptest/${name}/${name}.tar.gz";
|
||||
sha256 = "09v070a9dv6zq6hgj4v67i31zsis3s96psrnhlq9g4vhdcaxykwy";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://cpptest.sourceforge.net/;
|
||||
description = "Simple C++ unit testing framework";
|
||||
maintainers = with maintainers; [ bosu ];
|
||||
license = stdenv.lib.licenses.lgpl3;
|
||||
};
|
||||
}
|
@ -5408,6 +5408,8 @@ let
|
||||
|
||||
framac = callPackage ../development/tools/analysis/frama-c { };
|
||||
|
||||
cpptest = callPackage ../development/libraries/cpptest { };
|
||||
|
||||
cppi = callPackage ../development/tools/misc/cppi { };
|
||||
|
||||
cproto = callPackage ../development/tools/misc/cproto { };
|
||||
|
Loading…
Reference in New Issue
Block a user