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
24 lines
683 B
Nix
24 lines
683 B
Nix
{ stdenv, agda, fetchgit }:
|
|
|
|
agda.mkDerivation (self: rec {
|
|
version = "0dca24a81d417db2ae8fc871eccb7776f7eae952";
|
|
name = "agda-prelude-${version}";
|
|
|
|
src = fetchgit {
|
|
url = "https://github.com/UlfNorell/agda-prelude.git";
|
|
rev = version;
|
|
sha256 = "0gwfgvj96i1mx5v01bi46h567d1q1fbgvzv6z8zv91l2jhybwff5";
|
|
};
|
|
|
|
topSourceDirectories = [ "src" ];
|
|
everythingFile = "src/Prelude.agda";
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/UlfNorell/agda-prelude;
|
|
description = "Programming library for Agda";
|
|
license = stdenv.lib.licenses.mit;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
maintainers = with maintainers; [ fuuzetsu mudri ];
|
|
};
|
|
})
|