about summary refs log tree commit diff
path: root/pkgs/servers/osmocom/osmo-hlr/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/servers/osmocom/osmo-hlr/default.nix')
-rw-r--r--pkgs/servers/osmocom/osmo-hlr/default.nix52
1 files changed, 0 insertions, 52 deletions
diff --git a/pkgs/servers/osmocom/osmo-hlr/default.nix b/pkgs/servers/osmocom/osmo-hlr/default.nix
deleted file mode 100644
index ec8d4622a848..000000000000
--- a/pkgs/servers/osmocom/osmo-hlr/default.nix
+++ /dev/null
@@ -1,52 +0,0 @@
-{ lib
-, stdenv
-, fetchFromGitHub
-, autoreconfHook
-, pkg-config
-, libosmocore
-, libosmoabis
-, sqlite
-}:
-
-let
-  inherit (stdenv) isLinux;
-in
-
-stdenv.mkDerivation rec {
-  pname = "osmo-hlr";
-  version = "1.8.0";
-
-  src = fetchFromGitHub {
-    owner = "osmocom";
-    repo = "osmo-hlr";
-    rev = version;
-    hash = "sha256-c8dnDXZ5K8hjHWq/AjsPFJlamuuasz7mQS5iIBjWCG0=";
-  };
-
-  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 = [ ];
-    platforms = lib.platforms.linux;
-    mainProgram = "osmo-hlr";
-  };
-}