summary refs log tree commit diff
path: root/pkgs/development/libraries/gflags/default.nix
blob: d79b7691335819a125182ab63c24823ace462225 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ stdenv, fetchurl, cmake }:

stdenv.mkDerivation
  { name = "gflags-2.2.1";
    src = fetchurl
      { url = "https://github.com/gflags/gflags/archive/v2.2.1.tar.gz";
        sha256 = "03lxc2ah8i392kh1naq99iip34k4fpv22kwflyx3byd2ssycs9xf";
      };
    nativeBuildInputs = [ cmake ];
  }