about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/osmocom/osmo-hnodeb/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/servers/osmocom/osmo-hnodeb/default.nix')
-rw-r--r--nixpkgs/pkgs/servers/osmocom/osmo-hnodeb/default.nix60
1 files changed, 60 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/servers/osmocom/osmo-hnodeb/default.nix b/nixpkgs/pkgs/servers/osmocom/osmo-hnodeb/default.nix
new file mode 100644
index 000000000000..95dd6bf72b70
--- /dev/null
+++ b/nixpkgs/pkgs/servers/osmocom/osmo-hnodeb/default.nix
@@ -0,0 +1,60 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, autoreconfHook
+, pkg-config
+, libosmocore
+, lksctp-tools
+, libasn1c
+, libosmoabis
+, libosmo-netif
+, libosmo-sccp
+, osmo-iuh
+}:
+
+let
+  inherit (stdenv) isLinux;
+in
+
+stdenv.mkDerivation rec {
+  pname = "osmo-hnodeb";
+  version = "0.1.1";
+
+  src = fetchFromGitHub {
+    owner = "osmocom";
+    repo = "osmo-hnodeb";
+    rev = version;
+    hash = "sha256-Izivyw2HqRmrM68ehGqlIkJeuZ986d1WQ0yr6NWWTdA=";
+  };
+
+  postPatch = ''
+    echo "${version}" > .tarball-version
+  '';
+
+
+  nativeBuildInputs = [
+    autoreconfHook
+    pkg-config
+  ];
+
+  buildInputs = [
+    libosmocore
+    lksctp-tools
+    libasn1c
+    libosmoabis
+    libosmo-netif
+    libosmo-sccp
+    osmo-iuh
+  ];
+
+  enableParallelBuilding = true;
+
+  meta = {
+    description = "(upper layers of) HomeNodeB";
+    mainProgram = "osmo-hnodeb";
+    homepage = "https://osmocom.org/projects/osmo-hnodeb";
+    license = lib.licenses.agpl3Plus;
+    maintainers = with lib.maintainers; [ janik ];
+    platforms = lib.platforms.linux;
+  };
+}