aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/libcrossguid
diff options
context:
space:
mode:
authorEdward Tjörnhammar <ed@cflags.cc>2016-02-21 15:30:05 +0100
committerEdward Tjörnhammar <ed@cflags.cc>2016-02-21 15:32:12 +0100
commita3017f92d845b9313dffdd3ed1ef5dcd4808d96a (patch)
treeed5d91e938e08c20a969733ad6b9a19a9df2fa49 /pkgs/development/libraries/libcrossguid
parenta6ce937ba176f91e8661954ad883c641995e061e (diff)
libcrossguid: init at 2016-02-21
Diffstat (limited to 'pkgs/development/libraries/libcrossguid')
-rw-r--r--pkgs/development/libraries/libcrossguid/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libcrossguid/default.nix b/pkgs/development/libraries/libcrossguid/default.nix
new file mode 100644
index 000000000000..cf142ac68c42
--- /dev/null
+++ b/pkgs/development/libraries/libcrossguid/default.nix
@@ -0,0 +1,34 @@
+{ stdenv, fetchFromGitHub, libuuid }:
+
+stdenv.mkDerivation rec {
+ name = "lib" + pname + "-" + version;
+ pname = "crossguid";
+ version = "2016-02-21";
+
+ src = fetchFromGitHub {
+ owner = "graeme-hill";
+ repo = pname;
+ rev = "8f399e8bd4252be9952f3dfa8199924cc8487ca4";
+ sha256 = "1i29y207qqddvaxbn39pk2fbh3gx8zvdprfp35wasj9rw2wjk3s9";
+ };
+
+ buildInputs = [ libuuid ];
+
+ buildPhase = ''
+ g++ -c guid.cpp -o guid.o $CXXFLAGS -std=c++11 -DGUID_LIBUUID
+ ar rvs libcrossguid.a guid.o
+ '';
+ installPhase = ''
+ mkdir -p $out/{lib,include}
+ install -D -m644 libcrossguid.a "$out/lib/libcrossguid.a"
+ install -D -m644 guid.h "$out/include/guid.h"
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Lightweight cross platform C++ GUID/UUID library";
+ license = licenses.mit;
+ maintainers = with maintainers; [ edwtjo ];
+ homepage = https://github.com/graeme-hill/crossguid;
+ };
+
+} \ No newline at end of file