mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 04:48:10 +00:00
21f17d69f6
Build-tested on x86_64 Linux & Mac.
18 lines
428 B
Nix
18 lines
428 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "indent-2.2.10";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/indent/${name}.tar.gz";
|
|
sha256 = "0f9655vqdvfwbxvs1gpa7py8k1z71aqh8hp73f65vazwbfz436wa";
|
|
};
|
|
|
|
meta = {
|
|
homepage = https://www.gnu.org/software/indent/;
|
|
description = "A source code reformatter";
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|