mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
highlight: 3.43 -> 3.52, use GitLab source
This commit is contained in:
parent
6b7c72105e
commit
0d137e1991
1 changed files with 7 additions and 5 deletions
|
@ -1,18 +1,20 @@
|
|||
{ stdenv, fetchFromGitHub, getopt, lua, boost, pkgconfig, gcc }:
|
||||
{ stdenv, fetchFromGitLab, getopt, lua, boost, pkgconfig, gcc }:
|
||||
|
||||
with stdenv.lib;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "highlight-${version}";
|
||||
version = "3.43";
|
||||
version = "3.52";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "andre-simon";
|
||||
src = fetchFromGitLab {
|
||||
owner = "saalen";
|
||||
repo = "highlight";
|
||||
rev = "v${version}";
|
||||
sha256 = "126nsf4cjxflg2kiv72qf1xl5fsilk0jqcncs6qqgm72cpjfmlsy";
|
||||
sha256 = "0zhn1k70ck82ks7ckzsy1yiz686ym2ps7c28wjmkgxfpyjanilrq";
|
||||
};
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ] ++ optional stdenv.isDarwin gcc ;
|
||||
|
||||
buildInputs = [ getopt lua boost ];
|
||||
|
|
Loading…
Reference in a new issue