diff options
author | Vincent Ambo <tazjin@google.com> | 2020-03-01T01·06+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2020-03-01T01·06+0000 |
commit | 33c2a27d775ab63e9ad239f9058bc8097fbfd445 (patch) | |
tree | 0a8f246f69414afc15381f4d949b675e2829e858 /third_party/pounce/default.nix | |
parent | d38995385b450c8b60f6a474574e61479ed74d5c (diff) |
chore(third_party): Remove pounce override r/587
Pounce is now available at 1.1 from nixpkgs upstream and no longer needs to be bumped manually.
Diffstat (limited to 'third_party/pounce/default.nix')
-rw-r--r-- | third_party/pounce/default.nix | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/third_party/pounce/default.nix b/third_party/pounce/default.nix deleted file mode 100644 index 6e4feffe7cea..000000000000 --- a/third_party/pounce/default.nix +++ /dev/null @@ -1,17 +0,0 @@ -# Applies the changes from nixpkgs#88e4258df to the pounce derivation. -# -# TODO(tazjin): Remove this once the change has propagated to -# nixos-unstable. -{ pkgs, ... }: - -with pkgs; - -originals.pounce.overrideAttrs(old: rec { - version = "1.1"; - src = fetchzip { - url = "https://git.causal.agency/pounce/snapshot/pounce-${version}.tar.gz"; - sha256 = "07iyh6ikrlf7y57k462jcr00db6aijk9b2s7n7l7i49hk7kmm6wq"; - }; - - patches = []; -}) |