osmo-bsc 1.11.0 -> 1.11.1 https://repology.org/project/osmo-bsc/versions attrpath: osmo-bsc Checking auto update branch... No auto update branch exists Old version 1.11.0" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , autoreconfHook , pkg-config , libosmocore , libosmoabis , libosmo-netif , libosmo-sccp , osmo-mgw }: let inherit (stdenv) isLinux; in stdenv.mkDerivation rec { pname = "osmo-bsc"; version = "1.11.1"; src = fetchFromGitHub { owner = "osmocom"; repo = "osmo-bsc"; rev = version; hash = "sha256-pMdQcIFWiawXYnmHSjTk+3YcZNMrv3qmgWr4gkTknJA="; }; postPatch = '' echo "${version}" > .tarball-version ''; nativeBuildInputs = [ autoreconfHook pkg-config ]; buildInputs = [ libosmocore libosmoabis libosmo-netif libosmo-sccp osmo-mgw ]; enableParallelBuilding = true; meta = { description = "GSM Base Station Controller"; homepage = "https://projects.osmocom.org/projects/osmobsc"; license = lib.licenses.agpl3Plus; maintainers = with lib.maintainers; [ janik ]; platforms = lib.platforms.linux; }; }