Merge pull request #63985 from bjornfor/trompeloeil
trompeloeil: init at 34
This commit is contained in:
commit
462944e5e3
|
@ -0,0 +1,23 @@
|
||||||
|
{ stdenv, fetchFromGitHub, cmake }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "trompeloeil-${version}";
|
||||||
|
version = "34";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "rollbear";
|
||||||
|
repo = "trompeloeil";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0mj3zni18kfm04jrqjaa1p6ii5q0dz6qdm3hi57z9lzygaxbdc97";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Header only C++14 mocking framework";
|
||||||
|
homepage = "https://github.com/rollbear/trompeloeil";
|
||||||
|
license = licenses.boost;
|
||||||
|
maintainers = [ maintainers.bjornfor ];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
};
|
||||||
|
}
|
|
@ -2663,6 +2663,8 @@ in
|
||||||
|
|
||||||
tridactyl-native = callPackage ../tools/networking/tridactyl-native { };
|
tridactyl-native = callPackage ../tools/networking/tridactyl-native { };
|
||||||
|
|
||||||
|
trompeloeil = callPackage ../development/libraries/trompeloeil { };
|
||||||
|
|
||||||
uudeview = callPackage ../tools/misc/uudeview { };
|
uudeview = callPackage ../tools/misc/uudeview { };
|
||||||
|
|
||||||
uutils-coreutils = callPackage ../tools/misc/uutils-coreutils {
|
uutils-coreutils = callPackage ../tools/misc/uutils-coreutils {
|
||||||
|
|
Loading…
Reference in New Issue