mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +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
27 lines
734 B
Nix
27 lines
734 B
Nix
{ stdenv, fetchurl, autoreconfHook, pkgconfig, file, protobufc }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libivykis-${version}";
|
|
|
|
version = "0.41";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/libivykis/${version}/ivykis-${version}.tar.gz";
|
|
sha256 = "1igk3svf36i5xgb6ipc507xpj6zjm4xi9j1j2cdqaachllwlb4rc";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
buildInputs = [ file protobufc ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://libivykis.sourceforge.net/;
|
|
description = ''
|
|
A thin wrapper over various OS'es implementation of I/O readiness
|
|
notification facilities
|
|
'';
|
|
license = licenses.zlib;
|
|
maintainers = [ maintainers.rickynils ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|