lol

bootil: unstable-2015-12-17 -> unstable-2019-11-18

+10 -14
+10 -14
pkgs/development/libraries/bootil/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, fetchpatch, premake4 }: 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , premake4 5 + }: 2 6 3 7 stdenv.mkDerivation { 4 8 pname = "bootil"; 5 - version = "unstable-2015-12-17"; 9 + version = "unstable-2019-11-18"; 6 10 7 11 src = fetchFromGitHub { 8 12 owner = "garrynewman"; 9 13 repo = "bootil"; 10 - rev = "1d3e321fc2be359e2350205b8c7f1cad2164ee0b"; 11 - sha256 = "03wq526r80l2px797hd0n5m224a6jibwipcbsvps6l9h740xabzg"; 14 + rev = "beb4cec8ad29533965491b767b177dc549e62d23"; 15 + sha256 = "1njdj6nvmwf7j2fwqbyvd1cf5l52797vk2wnsliylqdzqcjmfpij"; 12 16 }; 13 17 14 - patches = [ 15 - (fetchpatch { 16 - url = "https://github.com/garrynewman/bootil/pull/22.patch"; 17 - name = "github-pull-request-22.patch"; 18 - sha256 = "1qf8wkv00pb9w1aa0dl89c8gm4rmzkxfl7hidj4gz0wpy7a24qa2"; 19 - }) 20 - ]; 21 - 22 18 # Avoid guessing where files end up. Just use current directory. 23 19 postPatch = '' 24 20 substituteInPlace projects/premake4.lua \ ··· 28 24 ''; 29 25 30 26 nativeBuildInputs = [ premake4 ]; 27 + 31 28 premakefile = "projects/premake4.lua"; 32 29 33 30 installPhase = '' ··· 40 37 homepage = "https://github.com/garrynewman/bootil"; 41 38 # License unsure - see https://github.com/garrynewman/bootil/issues/21 42 39 license = licenses.free; 43 - maintainers = [ maintainers.abigailbuccaneer ]; 44 - platforms = platforms.all; 40 + maintainers = with maintainers; [ abigailbuccaneer ]; 45 41 # Build uses `-msse` and `-mfpmath=sse` 46 42 badPlatforms = [ "aarch64-linux" ]; 47 43 };