fork
Configure Feed
Select the types of activity you want to include in your feed.
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv, fetchurl, cmake }:
2
3stdenv.mkDerivation
4 { name = "gflags-2.2.1";
5 src = fetchurl
6 { url = "https://github.com/gflags/gflags/archive/v2.2.1.tar.gz";
7 sha256 = "03lxc2ah8i392kh1naq99iip34k4fpv22kwflyx3byd2ssycs9xf";
8 };
9 nativeBuildInputs = [ cmake ];
10 # for case-insensitive filesystems
11 prePatch = "mv BUILD BUILD.bazel";
12
13 meta = with stdenv.lib; {
14 description = "C++ library that implements commandline flags processing";
15 homepage = "https://github.com/gflags/gflags";
16 license = licenses.bsd3;
17 platforms = platforms.unix;
18 };
19 }