wla-dx: git-2017-06-05 -> 9.8
Additionally, the `hardeningDisable` is no longer required to successfully build.
This commit is contained in:
parent
20b993ef2c
commit
cea419a1ba
|
@ -1,18 +1,16 @@
|
||||||
{stdenv, fetchFromGitHub, cmake}:
|
{stdenv, fetchFromGitHub, cmake}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "2017-06-05";
|
pname = "wla-dx";
|
||||||
name = "wla-dx-git-${version}";
|
version = "9.8";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "vhelin";
|
owner = "vhelin";
|
||||||
repo = "wla-dx";
|
repo = "wla-dx";
|
||||||
rev = "ae6843f9711cbc2fa6dd8c200877b40bd2bcad7f";
|
rev = "v${version}-fix";
|
||||||
sha256 = "09c2kz12ld97ad41j6r8r65jknllrak1x8r43fgr26x7hdlxz5c6";
|
sha256 = "1dsxhy19nif983lr20vxl099giwzgmzqyh7ass705hkphmwagcv6";
|
||||||
};
|
};
|
||||||
|
|
||||||
hardeningDisable = [ "format" ];
|
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/bin
|
mkdir -p $out/bin
|
||||||
install binaries/* $out/bin
|
install binaries/* $out/bin
|
||||||
|
|
Loading…
Reference in New Issue