Init CKAN: The Comprehensive Kerbal Archive Network (#15202)
* ckan: Init at 1.16.1
This commit is contained in:
parent
d0306e4ab4
commit
c5451206ab
42
pkgs/games/ckan/default.nix
Normal file
42
pkgs/games/ckan/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -14805,6 +14805,8 @@ in
|
|||||||
|
|
||||||
chocolateDoom = callPackage ../games/chocolate-doom { };
|
chocolateDoom = callPackage ../games/chocolate-doom { };
|
||||||
|
|
||||||
|
ckan = callPackage ../games/ckan { };
|
||||||
|
|
||||||
cockatrice = qt5.callPackage ../games/cockatrice { };
|
cockatrice = qt5.callPackage ../games/cockatrice { };
|
||||||
|
|
||||||
confd = goPackages.confd.bin // { outputs = [ "bin" ]; };
|
confd = goPackages.confd.bin // { outputs = [ "bin" ]; };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user