osmo-msc 1.11.0 -> 1.11.1 https://repology.org/project/osmo-msc/versions attrpath: osmo-msc 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 , sqlite , libosmoabis , libosmo-netif , libosmo-sccp , osmo-mgw , osmo-hlr , lksctp-tools }: let inherit (stdenv) isLinux; in stdenv.mkDerivation rec { pname = "osmo-msc"; version = "1.11.1"; src = fetchFromGitHub { owner = "osmocom"; repo = "osmo-msc"; rev = version; hash = "sha256-JsfZUkXCpyLucaj0NL+MRCr2sWSCbuZRsipi4O7kFRQ="; }; postPatch = '' echo "${version}" > .tarball-version ''; nativeBuildInputs = [ autoreconfHook pkg-config ]; buildInputs = [ libosmocore sqlite libosmoabis libosmo-netif libosmo-sccp osmo-mgw osmo-hlr lksctp-tools ]; enableParallelBuilding = true; meta = { description = "Osmocom implementation of 3GPP Mobile Swtiching Centre (MSC)"; homepage = "https://osmocom.org/projects/osmomsc/wiki"; license = lib.licenses.agpl3Only; maintainers = with lib.maintainers; [ janik ]; platforms = lib.platforms.linux; }; }