rucksack: init at 3.1.0
This commit is contained in:
parent
0fea053461
commit
55262f98b6
23
pkgs/development/tools/rucksack/default.nix
Normal file
23
pkgs/development/tools/rucksack/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ stdenv, fetchFromGitHub, liblaxjson, cmake, freeimage }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "3.1.0";
|
||||
name = "rucksack-${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "andrewrk";
|
||||
repo = "rucksack";
|
||||
rev = "${version}";
|
||||
sha256 = "0bcm20hqxqnq1j0zghb9i7z9frri6bbf7rmrv5g8dd626sq07vyv";
|
||||
};
|
||||
|
||||
buildInputs = [ cmake liblaxjson freeimage ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Texture packer and resource bundler";
|
||||
platforms = platforms.unix;
|
||||
homepage = https://github.com/andrewrk/rucksack;
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.andrewrk ];
|
||||
};
|
||||
}
|
@ -14554,6 +14554,8 @@ let
|
||||
|
||||
robomongo = callPackage ../applications/misc/robomongo { };
|
||||
|
||||
rucksack = callPackage ../development/tools/rucksack { };
|
||||
|
||||
opkg = callPackage ../tools/package-management/opkg { };
|
||||
|
||||
opkg-utils = callPackage ../tools/package-management/opkg-utils { };
|
||||
|
Loading…
Reference in New Issue
Block a user