tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
bootil: unstable-2015-12-17 -> unstable-2019-11-18
Pavol Rusnak
5 years ago
ce7d5a12
a15305e0
+10
-14
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
bootil
default.nix
+10
-14
pkgs/development/libraries/bootil/default.nix
reviewed
···
1
1
-
{ lib, stdenv, fetchFromGitHub, fetchpatch, premake4 }:
1
1
+
{ lib
2
2
+
, stdenv
3
3
+
, fetchFromGitHub
4
4
+
, premake4
5
5
+
}:
2
6
3
7
stdenv.mkDerivation {
4
8
pname = "bootil";
5
5
-
version = "unstable-2015-12-17";
9
9
+
version = "unstable-2019-11-18";
6
10
7
11
src = fetchFromGitHub {
8
12
owner = "garrynewman";
9
13
repo = "bootil";
10
10
-
rev = "1d3e321fc2be359e2350205b8c7f1cad2164ee0b";
11
11
-
sha256 = "03wq526r80l2px797hd0n5m224a6jibwipcbsvps6l9h740xabzg";
14
14
+
rev = "beb4cec8ad29533965491b767b177dc549e62d23";
15
15
+
sha256 = "1njdj6nvmwf7j2fwqbyvd1cf5l52797vk2wnsliylqdzqcjmfpij";
12
16
};
13
17
14
14
-
patches = [
15
15
-
(fetchpatch {
16
16
-
url = "https://github.com/garrynewman/bootil/pull/22.patch";
17
17
-
name = "github-pull-request-22.patch";
18
18
-
sha256 = "1qf8wkv00pb9w1aa0dl89c8gm4rmzkxfl7hidj4gz0wpy7a24qa2";
19
19
-
})
20
20
-
];
21
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
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
43
-
maintainers = [ maintainers.abigailbuccaneer ];
44
44
-
platforms = platforms.all;
40
40
+
maintainers = with maintainers; [ abigailbuccaneer ];
45
41
# Build uses `-msse` and `-mfpmath=sse`
46
42
badPlatforms = [ "aarch64-linux" ];
47
43
};