mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
36 lines
916 B
Nix
36 lines
916 B
Nix
{ lib, stdenv, fetchurl, makeWrapper, mono, gtk2, curl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ckan";
|
|
version = "1.32.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/KSP-CKAN/CKAN/releases/download/v${version}/ckan.exe";
|
|
sha256 = "sha256-cD8S5UcS5tBJoW1IExrmtoYn8k/P7RjCRAx7BEhAWGk=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|