bootil: unstable-2015-12-17 -> unstable-2019-11-18
This commit is contained in:
parent
a15305e07b
commit
ce7d5a1211
|
@ -1,24 +1,20 @@
|
||||||
{ lib, stdenv, fetchFromGitHub, fetchpatch, premake4 }:
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, premake4
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
pname = "bootil";
|
pname = "bootil";
|
||||||
version = "unstable-2015-12-17";
|
version = "unstable-2019-11-18";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "garrynewman";
|
owner = "garrynewman";
|
||||||
repo = "bootil";
|
repo = "bootil";
|
||||||
rev = "1d3e321fc2be359e2350205b8c7f1cad2164ee0b";
|
rev = "beb4cec8ad29533965491b767b177dc549e62d23";
|
||||||
sha256 = "03wq526r80l2px797hd0n5m224a6jibwipcbsvps6l9h740xabzg";
|
sha256 = "1njdj6nvmwf7j2fwqbyvd1cf5l52797vk2wnsliylqdzqcjmfpij";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
|
||||||
(fetchpatch {
|
|
||||||
url = "https://github.com/garrynewman/bootil/pull/22.patch";
|
|
||||||
name = "github-pull-request-22.patch";
|
|
||||||
sha256 = "1qf8wkv00pb9w1aa0dl89c8gm4rmzkxfl7hidj4gz0wpy7a24qa2";
|
|
||||||
})
|
|
||||||
];
|
|
||||||
|
|
||||||
# Avoid guessing where files end up. Just use current directory.
|
# Avoid guessing where files end up. Just use current directory.
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace projects/premake4.lua \
|
substituteInPlace projects/premake4.lua \
|
||||||
|
@ -28,6 +24,7 @@ stdenv.mkDerivation {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
nativeBuildInputs = [ premake4 ];
|
nativeBuildInputs = [ premake4 ];
|
||||||
|
|
||||||
premakefile = "projects/premake4.lua";
|
premakefile = "projects/premake4.lua";
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
|
@ -40,8 +37,7 @@ stdenv.mkDerivation {
|
||||||
homepage = "https://github.com/garrynewman/bootil";
|
homepage = "https://github.com/garrynewman/bootil";
|
||||||
# License unsure - see https://github.com/garrynewman/bootil/issues/21
|
# License unsure - see https://github.com/garrynewman/bootil/issues/21
|
||||||
license = licenses.free;
|
license = licenses.free;
|
||||||
maintainers = [ maintainers.abigailbuccaneer ];
|
maintainers = with maintainers; [ abigailbuccaneer ];
|
||||||
platforms = platforms.all;
|
|
||||||
# Build uses `-msse` and `-mfpmath=sse`
|
# Build uses `-msse` and `-mfpmath=sse`
|
||||||
badPlatforms = [ "aarch64-linux" ];
|
badPlatforms = [ "aarch64-linux" ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue