Skip to content

Commit

Permalink
Revert "Merge pull request NixOS#276894 from katexochen/glide/remove"
Browse files Browse the repository at this point in the history
This reverts commit d548596, reversing
changes made to a0ef138.
  • Loading branch information
sergeykranga committed Feb 7, 2024
1 parent 268761c commit b987913
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 1 deletion.
26 changes: 26 additions & 0 deletions pkgs/development/tools/glide/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{ lib, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
pname = "glide";
version = "0.13.3";

goPackagePath = "github.com/Masterminds/glide";

ldflags = [
"-X main.version=${version}"
];

src = fetchFromGitHub {
rev = "v${version}";
owner = "Masterminds";
repo = "glide";
sha256 = "1wskg1cxqy9sp0738qiiagdw09dbs3swxsk4z6w5hsfiq2h44a54";
};

meta = with lib; {
homepage = "https://glide.sh";
description = "Package management for Go";
license = licenses.mit;
maintainers = [ maintainers.rushmorem ];
};
}
1 change: 0 additions & 1 deletion pkgs/top-level/aliases.nix
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,6 @@ mapAliases ({
}; # Added 2021-01-14

gitter = throw "gitter has been removed since the client has been abandoned by upstream with the backend migration to Matrix"; # Added 2023-09-18
glide = throw "'glide' has been removed as it is unmaintained, please use Go modules instead"; # Added 2023-12-26
gmailieer = lieer; # Added 2020-04-19
gmic-qt-krita = throw "gmic-qt-krita was removed as it's no longer supported upstream."; # Converted to throw 2023-02-02
gnatboot11 = gnat-bootstrap11;
Expand Down
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5560,6 +5560,8 @@ with pkgs;

gllvm = callPackage ../development/tools/gllvm { };

glide = callPackage ../development/tools/glide { };

globalarrays = callPackage ../development/libraries/globalarrays { };

glock = callPackage ../development/tools/glock { };
Expand Down

0 comments on commit b987913

Please sign in to comment.