mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
32 lines
780 B
Nix
32 lines
780 B
Nix
{ stdenv, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn
|
|
, pkgconfig
|
|
, glib, libxml2
|
|
}:
|
|
|
|
buildGoPackage rec {
|
|
name = "ua-unstable-${version}";
|
|
version = "2017-02-24";
|
|
rev = "325dab92c60e0f028e55060f0c288aa70905fb17";
|
|
|
|
goPackagePath = "github.com/sloonz/ua";
|
|
|
|
src = fetchgit {
|
|
inherit rev;
|
|
url = "https://github.com/sloonz/ua.git";
|
|
sha256 = "0452qknc8km9495324g6b5ja3shvk8jl7aa9nrjhdylf09dp2nif";
|
|
};
|
|
|
|
goDeps = ./deps.nix;
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ glib libxml2 ];
|
|
|
|
meta = {
|
|
homepage = https://github.com/sloonz/ua;
|
|
license = stdenv.lib.licenses.isc;
|
|
shortDescription = "Universal Aggregator";
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = with stdenv.lib.maintainers; [ ttuegel ];
|
|
};
|
|
}
|