Skip to content

Commit

Permalink
Merge pull request #63985 from bjornfor/trompeloeil
Browse files Browse the repository at this point in the history
trompeloeil: init at 34
  • Loading branch information
bjornfor committed Jul 1, 2019
2 parents 51bcf11 + 4f4eaf5 commit 462944e
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
23 changes: 23 additions & 0 deletions pkgs/development/libraries/trompeloeil/default.nix
Original file line number Diff line number Diff line change
@@ -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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2663,6 +2663,8 @@ in

tridactyl-native = callPackage ../tools/networking/tridactyl-native { };

trompeloeil = callPackage ../development/libraries/trompeloeil { };

uudeview = callPackage ../tools/misc/uudeview { };

uutils-coreutils = callPackage ../tools/misc/uutils-coreutils {
Expand Down

0 comments on commit 462944e

Please sign in to comment.