summary refs log tree commit diff
path: root/pkgs/development/libraries/libossp-uuid
diff options
context:
space:
mode:
authorBas van Dijk <v.dijk.bas@gmail.com>2014-01-18 20:54:52 +0100
committerBas van Dijk <v.dijk.bas@gmail.com>2014-01-18 20:54:52 +0100
commita4111bd67f8efbca9f1b67a015c299dc2ae4c6c4 (patch)
tree37df068dd2a5c0c19d73451e614d11a7e353a6c5 /pkgs/development/libraries/libossp-uuid
parent9c1d3bfa9f7d7b95eb20d0f729e3b3c9d7abcd4b (diff)
downloadnixpkgs-a4111bd67f8efbca9f1b67a015c299dc2ae4c6c4.tar
nixpkgs-a4111bd67f8efbca9f1b67a015c299dc2ae4c6c4.tar.gz
nixpkgs-a4111bd67f8efbca9f1b67a015c299dc2ae4c6c4.tar.bz2
nixpkgs-a4111bd67f8efbca9f1b67a015c299dc2ae4c6c4.tar.lz
nixpkgs-a4111bd67f8efbca9f1b67a015c299dc2ae4c6c4.tar.xz
nixpkgs-a4111bd67f8efbca9f1b67a015c299dc2ae4c6c4.tar.zst
nixpkgs-a4111bd67f8efbca9f1b67a015c299dc2ae4c6c4.zip
Add new package libossp-uuid-1.6.2
Diffstat (limited to 'pkgs/development/libraries/libossp-uuid')
-rw-r--r--pkgs/development/libraries/libossp-uuid/default.nix39
1 files changed, 39 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libossp-uuid/default.nix b/pkgs/development/libraries/libossp-uuid/default.nix
new file mode 100644
index 00000000000..b1ccae4698c
--- /dev/null
+++ b/pkgs/development/libraries/libossp-uuid/default.nix
@@ -0,0 +1,39 @@
+{stdenv, fetchurl}:
+
+let version = "1.6.2"; in
+
+stdenv.mkDerivation {
+  name = "libossp-uuid-${version}";
+
+  src = fetchurl {
+    url = "ftp://ftp.ossp.org/pkg/lib/uuid/uuid-${version}.tar.gz";
+    sha256= "11a615225baa5f8bb686824423f50e4427acd3f70d394765bdff32801f0fd5b0";
+  };
+
+  meta = {
+    homepage = http://www.ossp.org/pkg/lib/uuid/;
+    description =
+      ''
+        OSSP uuid is a ISO-C:1999 application programming interface
+        (API) and corresponding command line interface (CLI) for the
+        generation of DCE 1.1, ISO/IEC 11578:1996 and RFC 4122
+        compliant Universally Unique Identifier (UUID). It supports
+        DCE 1.1 variant UUIDs of version 1 (time and node based),
+        version 3 (name based, MD5), version 4 (random number based)
+        and version 5 (name based, SHA-1). Additional API bindings are
+        provided for the languages ISO-C++:1998, Perl:5 and
+        PHP:4/5. Optional backward compatibility exists for the ISO-C
+        DCE-1.1 and Perl Data::UUID APIs.
+
+        UUIDs are 128 bit numbers which are intended to have a high
+        likelihood of uniqueness over space and time and are
+        computationally difficult to guess. They are globally unique
+        identifiers which can be locally generated without contacting
+        a global registration authority. UUIDs are intended as unique
+        identifiers for both mass tagging objects with an extremely
+        short lifetime and to reliably identifying very persistent
+        objects across a network.
+      '';
+    license = "bsd2";
+  };
+}
\ No newline at end of file