about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/cinnamon/nemo-extensions/srcs.nix
blob: c59538a40a44ebdfb76eabe768476edad5876f90 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ fetchFromGitHub }:

rec {
  # When you bump this, you should make sure all nemo-extensions
  # are actually using this file since we try to deal with tags
  # like nemo-fileroller-5.6.1 according to upstream's wishes.
  version = "6.0.0";

  src = fetchFromGitHub {
    owner = "linuxmint";
    repo = "nemo-extensions";
    rev = version;
    sha256 = "sha256-M8ImntyfFfSL591UpqZosE7F8ydbpfrBhcLOBtW/sGQ=";
  };
}