home

My NixOS systems configurations.
Log | Files | Refs | LICENSE

commit d8b84b2c80fb0ef1aa3f8153005d98ff580340fb
parent 5815b928cac51571e5b71a25b6e1eab3521c1cb4
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Fri,  1 Dec 2023 16:17:44 +0100

nix/packages: remove deprecated esc package

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Mnix/packages/default.nix | 1-
Dnix/packages/esc/default.nix | 23-----------------------
Dnix/packages/esc/deps.nix | 21---------------------
3 files changed, 0 insertions(+), 45 deletions(-)

diff --git a/nix/packages/default.nix b/nix/packages/default.nix @@ -17,7 +17,6 @@ rec { # Maybe upstream athens = pkgs.callPackage ./athens { }; - esc = pkgs.callPackage ./esc { }; #gogo-protobuf = pkgs.callPackage ./gogo-protobuf {}; gorun = pkgs.callPackage ./gorun { }; govanityurl = pkgs.callPackage ./govanityurl { }; diff --git a/nix/packages/esc/default.nix b/nix/packages/esc/default.nix @@ -1,23 +0,0 @@ -{ stdenv, lib, buildGoPackage, fetchFromGitHub }: - -buildGoPackage rec { - name = "esc-${version}"; - version = "0.2.0"; - - goPackagePath = "github.com/mjibson/esc"; - - src = fetchFromGitHub { - rev = "v${version}"; - owner = "mjibson"; - repo = "esc"; - sha256 = "0ci3bdm01prm114plcwkgzbqn825lh0zc1iqaw3jicjay5sh0bis"; - }; - - goDeps = ./deps.nix; - - meta = { - description = "A simple file embedder for Go"; - homepage = "https://github.com/mjibson/esc"; - license = lib.licenses.asl20; - }; -} diff --git a/nix/packages/esc/deps.nix b/nix/packages/esc/deps.nix @@ -1,21 +0,0 @@ -# This file was generated by https://github.com/kamilchm/go2nix v1.3.0 -[ - { - goPackagePath = "github.com/pkg/errors"; - fetch = { - type = "git"; - url = "https://github.com/pkg/errors"; - rev = "059132a15dd08d6704c67711dae0cf35ab991756"; - sha256 = "0bxkbh2rq40kdk8i05am5np77cnskx3571v2k300j5mmj1rl1ijg"; - }; - } - { - goPackagePath = "golang.org/x/tools"; - fetch = { - type = "git"; - url = "https://go.googlesource.com/tools"; - rev = "6d71ab8aade08605ffc36622332264e2f6991952"; - sha256 = "0vxs5k6dc9rsr99n8ca6sibd8n2ah4j2jr13szpvi22q7kax2fnl"; - }; - } -]