mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 04:12:44 +03:00
highlight: 3.39 -> 3.40, fetch src from Github
This commit is contained in:
parent
70f35a99a4
commit
367a3e45fd
@ -1,14 +1,16 @@
|
||||
{ stdenv, fetchurl, getopt, lua, boost, pkgconfig, gcc }:
|
||||
{ stdenv, fetchFromGitHub, getopt, lua, boost, pkgconfig, gcc }:
|
||||
|
||||
with stdenv.lib;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "highlight-${version}";
|
||||
version = "3.39";
|
||||
version = "3.40";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.andre-simon.de/zip/${name}.tar.bz2";
|
||||
sha256 = "0z8gs69sqlyis4kvl8wwdgzywi199k73kkvn1mf9pf60npvcxwj4";
|
||||
src = fetchFromGitHub {
|
||||
owner = "andre-simon";
|
||||
repo = "highlight";
|
||||
rev = "${version}";
|
||||
sha256 = "0bkywhz4y10qcajimdha1ck5mvn7fsrv3yn8nd6rqbva39gbfmfd";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ] ++ optional stdenv.isDarwin gcc ;
|
||||
@ -28,6 +30,6 @@ stdenv.mkDerivation rec {
|
||||
description = "Source code highlighting tool";
|
||||
homepage = http://www.andre-simon.de/doku/highlight/en/highlight.php;
|
||||
platforms = platforms.unix;
|
||||
maintainers = [ maintainers.ndowens ];
|
||||
maintainers = with maintainers; [ ndowens willibutz ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user