mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56: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
20 lines
505 B
Nix
20 lines
505 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "sfsexp-${version}";
|
|
version = "1.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/sexpr/sexpr-${version}.tar.gz";
|
|
sha256 = "18gdwxjja0ip378hlzs8sp7q2g6hrmy7x10yf2wnxfmmylbpqn8k";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Small, fast s-expression library";
|
|
homepage = http://sexpr.sourceforge.net/;
|
|
maintainers = with maintainers; [ jb55 ];
|
|
license = licenses.gpl3;
|
|
platforms = with platforms; unix;
|
|
};
|
|
}
|