mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
69ce5cb656
find pkgs -name "*.nix" -exec sed -r \ "s|https?://downloads.sourceforge.net/|mirror://sourceforge/|g" -i {} \;
18 lines
476 B
Nix
18 lines
476 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "cpptest-1.1.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/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;
|
|
};
|
|
}
|