forked from mirrors/nixpkgs
deis: remove
Upstream repo is archived and the Deis PaaS is gone
This commit is contained in:
parent
98e91ccc56
commit
0764d56ef3
|
@ -1,36 +0,0 @@
|
|||
{ lib, buildGoPackage, fetchFromGitHub }:
|
||||
|
||||
buildGoPackage rec {
|
||||
pname = "deis";
|
||||
version = "1.13.4";
|
||||
rev = "v${version}";
|
||||
|
||||
goPackagePath = "github.com/deis/deis";
|
||||
subPackages = [ "client" ];
|
||||
|
||||
postInstall = ''
|
||||
if [ -f "$out/bin/client" ]; then
|
||||
mv "$out/bin/client" "$out/bin/deis"
|
||||
fi
|
||||
'';
|
||||
|
||||
src = fetchFromGitHub {
|
||||
inherit rev;
|
||||
owner = "deis";
|
||||
repo = "deis";
|
||||
sha256 = "0hndzvlgpfm83c4i1c88byv8j9clagswa79nny8wrw33dx90dym1";
|
||||
};
|
||||
|
||||
preBuild = ''
|
||||
export GOPATH=$GOPATH:$NIX_BUILD_TOP/go/src/${goPackagePath}/Godeps/_workspace
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://deis.io";
|
||||
description = "A command line utility used to interact with the Deis open source PaaS";
|
||||
license = licenses.asl20;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [
|
||||
];
|
||||
};
|
||||
}
|
|
@ -205,6 +205,7 @@ mapAliases ({
|
|||
debugedit-unstable = debugedit; # added 2021-11-22
|
||||
deepin = throw "deepin was a work in progress and it has been canceled and removed https://github.com/NixOS/nixpkgs/issues/94870"; # added 2020-08-31
|
||||
deepspeech = throw "deepspeech was removed in favor of stt. https://github.com/NixOS/nixpkgs/issues/119496"; # added 2021-05-05
|
||||
deis = throw "deis was removed ; the service does not exist anymore"; # added 2022-02-06
|
||||
deltachat-electron = deltachat-desktop; # added 2021-07-18
|
||||
deluge-1_x = throw ''
|
||||
Deluge 1.x (deluge-1_x) is no longer supported.
|
||||
|
|
|
@ -2816,8 +2816,6 @@ with pkgs;
|
|||
|
||||
dehydrated = callPackage ../tools/admin/dehydrated { };
|
||||
|
||||
deis = callPackage ../development/tools/deis {};
|
||||
|
||||
deisctl = callPackage ../development/tools/deisctl {};
|
||||
|
||||
deja-dup = callPackage ../applications/backup/deja-dup { };
|
||||
|
|
Loading…
Reference in a new issue