1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00
nixpkgs/pkgs/by-name/cu/cutee/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
664 B
Nix
Raw Permalink Normal View History

{ lib, stdenv, fetchurl }:
2016-06-15 21:42:01 +01:00
stdenv.mkDerivation rec {
pname = "cutee";
version = "0.4.2";
src = fetchurl {
url = "http://www.codesink.org/download/${pname}-${version}.tar.gz";
sha256 = "18bzvhzx8k24mpcim5669n3wg9hd0sfsxj8zjpbr24hywrlppgc2";
};
buildFlags = [ "cutee" ];
2016-06-15 21:42:01 +01:00
installPhase = ''
mkdir -p $out/bin
cp cutee $out/bin
'';
meta = with lib; {
2016-06-15 21:42:01 +01:00
description = "C++ Unit Testing Easy Environment";
mainProgram = "cutee";
homepage = "https://www.codesink.org/cutee_unit_testing.html";
2016-06-15 21:42:01 +01:00
license = licenses.gpl2Plus;
maintainers = with maintainers; [ leenaars];
platforms = platforms.linux;
};
}