Init CKAN: The Comprehensive Kerbal Archive Network (#15202)

* ckan: Init at 1.16.1
This commit is contained in:
Svein Ove Aas 2016-05-04 02:12:39 +01:00 committed by obadz
parent d0306e4ab4
commit c5451206ab
2 changed files with 44 additions and 0 deletions

View file

@ -0,0 +1,42 @@
{ stdenv, fetchFromGitHub, makeWrapper, perl, mono, gtk }:
stdenv.mkDerivation rec {
name = "ckan-${version}";
version = "1.16.1";
src = fetchFromGitHub {
owner = "KSP-CKAN";
repo = "CKAN";
rev = "v${version}";
sha256 = "0lfvl8w09lakz35szp5grfvhq8xx486f5igvj1m6azsql4n929lg";
};
buildInputs = [ makeWrapper perl mono gtk ];
postPatch = ''
substituteInPlace bin/build \
--replace /usr/bin/perl ${perl}/bin/perl
'';
# Tests don't currently work, as they try to write into /var/empty.
doCheck = false;
checkTarget = "test";
installPhase = ''
mkdir -p $out/bin
for exe in *.exe; do
install -m 0644 $exe $out/bin
makeWrapper ${mono}/bin/mono $out/bin/$(basename $exe .exe) \
--add-flags $out/bin/$exe \
--set LD_LIBRARY_PATH ${gtk.out}/lib
done
'';
meta = {
description = "Mod manager for Kerbal Space Program";
homepage = https://github.com/KSP-CKAN/CKAN;
license = stdenv.lib.licenses.mit;
maintainers = [ stdenv.lib.maintainers.Baughn ];
platforms = stdenv.lib.platforms.all;
};
}

View file

@ -14805,6 +14805,8 @@ in
chocolateDoom = callPackage ../games/chocolate-doom { };
ckan = callPackage ../games/ckan { };
cockatrice = qt5.callPackage ../games/cockatrice { };
confd = goPackages.confd.bin // { outputs = [ "bin" ]; };