about summary refs log tree commit diff
path: root/third_party/pounce/default.nix
blob: 1aab276b74368abc86f8170ae43450c2bd396ce8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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.third_party;

originals.pounce.overrideAttrs(old: rec {
  version = "1.1";
  src = fetchzip {
    url = "https://git.causal.agency/pounce/snapshot/pounce-${version}.tar.gz";
    sha256 = "07iyh6ikrlf7y57k462jcr00db6aijk9b2s7n7l7i49hk7kmm6wq";
  };

  patches = [];
})