summary refs log tree commit diff
path: root/pkgs/development/libraries/pystring/default.nix
blob: 3a1e64c0b00048c3e9f63869f19caea813d2652e (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
31
32
33
{ stdenv, lib, fetchFromGitHub, fetchpatch, cmake }:

stdenv.mkDerivation rec {
  pname = "pystring";
  version = "1.1.3";

  src = fetchFromGitHub {
    owner = "imageworks";
    repo = "pystring";
    rev = "v${version}";
    sha256 = "1w31pjiyshqgk6zd6m3ab3xfgb0ribi77r6fwrry2aw8w1adjknf";
  };

  patches = [
    (fetchpatch {
      name = "pystring-cmake-configuration.patch";
      url = "https://github.com/imageworks/pystring/commit/4f653fc35421129eae8a2c424901ca7170059370.patch";
      sha256 = "1hynzz76ff4vvmi6kwixsmjswkpyj6s4vv05d7nw0zscj4cdp8k3";
    })
  ];

  nativeBuildInputs = [ cmake ];

  doCheck = true;

  meta = with lib; {
    homepage = "https://github.com/imageworks/pystring/";
    description = "A collection of C++ functions which match the interface and behavior of python's string class methods using std::string";
    license = licenses.bsd3;
    maintainers = [ maintainers.rytone ];
    platforms = platforms.unix;
  };
}