about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/crcpp/default.nix
blob: c26578804baf3f06069c77c4eb10b3b49333e12d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ stdenv
, fetchFromGitHub
}:

stdenv.mkDerivation rec {
  pname = "crcpp";
  version = "1.0.1.0";

  src = fetchFromGitHub {
    owner = "d-bahr";
    repo = "CRCpp";
    rev = "release-${version}";
    sha256 = "138w97kfxnv8rcnvggba6fcxgbgq8amikkmy3jhqfn6xzy6zaimh";
  };

  dontBuild = true;

  installPhase = ''
    mkdir -p $out/include
    cp inc/CRC.h $out/include
  '';

  meta = with stdenv.lib; {
    homepage = "https://github.com/d-bahr/CRCpp";
    description = "Easy to use and fast C++ CRC library";
    platforms = platforms.all;
    maintainers = [ maintainers.ivar ];
    license = licenses.bsd3;
  };
}