2022-11-17T22:08:28 ckan 1.31.0 -> 1.31.2 https://github.com/KSP-CKAN/CKAN/releases 2022-11-17T22:08:31 attrpath: ckan 2022-11-17T22:08:31 Checking auto update branch... 2022-11-17T22:08:31 No auto update branch exists 2022-11-17T22:08:31 Old version 1.31.0" not present in master derivation file with contents: { lib, stdenv, fetchurl, makeWrapper, mono, gtk2, curl }: stdenv.mkDerivation rec { pname = "ckan"; version = "1.31.2"; src = fetchurl { url = "https://github.com/KSP-CKAN/CKAN/releases/download/v${version}/ckan.exe"; sha256 = "sha256-xbVcGbznUOowIQHsP1pUtpwHeU8vzICwYkRofVRIDPQ="; }; dontUnpack = true; nativeBuildInputs = [ makeWrapper ]; buildInputs = [ mono ]; libraries = lib.makeLibraryPath [ gtk2 curl ]; buildPhase = "true"; installPhase = '' install -m 644 -D $src $out/bin/ckan.exe makeWrapper ${mono}/bin/mono $out/bin/ckan \ --add-flags $out/bin/ckan.exe \ --set LD_LIBRARY_PATH $libraries ''; meta = with lib; { description = "Mod manager for Kerbal Space Program"; homepage = "https://github.com/KSP-CKAN/CKAN"; license = licenses.mit; maintainers = with maintainers; [ Baughn ymarkus ]; platforms = platforms.all; }; }