about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/osmocom/osmo-hlr/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/servers/osmocom/osmo-hlr/default.nix')
-rw-r--r--nixpkgs/pkgs/servers/osmocom/osmo-hlr/default.nix51
1 files changed, 51 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/servers/osmocom/osmo-hlr/default.nix b/nixpkgs/pkgs/servers/osmocom/osmo-hlr/default.nix
new file mode 100644
index 000000000000..6dce9cd84d40
--- /dev/null
+++ b/nixpkgs/pkgs/servers/osmocom/osmo-hlr/default.nix
@@ -0,0 +1,51 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, autoreconfHook
+, pkg-config
+, libosmocore
+, libosmoabis
+, sqlite
+}:
+
+let
+  inherit (stdenv) isLinux;
+in
+
+stdenv.mkDerivation rec {
+  pname = "osmo-hlr";
+  version = "1.7.0";
+
+  src = fetchFromGitHub {
+    owner = "osmocom";
+    repo = "osmo-hlr";
+    rev = version;
+    hash = "sha256-snl4Ezvz28NJEjHwb68V+W3MvMJjkFvc/AlGaeSyiXc=";
+  };
+
+  postPatch = ''
+    echo "${version}" > .tarball-version
+  '';
+
+
+  nativeBuildInputs = [
+    autoreconfHook
+    pkg-config
+  ];
+
+  buildInputs = [
+    libosmocore
+    libosmoabis
+    sqlite
+  ];
+
+  enableParallelBuilding = true;
+
+  meta = {
+    description = "Osmocom implementation of 3GPP Home Location Registr (HLR)";
+    homepage = "https://osmocom.org/projects/osmo-hlr";
+    license = lib.licenses.agpl3Plus;
+    maintainers = with lib.maintainers; [ janik ];
+    platforms = lib.platforms.linux;
+  };
+}