We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e742c4 commit bbf2164Copy full SHA for bbf2164
pkgs/by-name/pa/papi/package.nix
@@ -4,15 +4,13 @@
4
fetchurl,
5
}:
6
7
-stdenv.mkDerivation rec {
8
- version = "7.0.1";
+stdenv.mkDerivation (finalAttrs: {
+ version = "7.1.0";
9
pname = "papi";
10
11
src = fetchurl {
12
- url = "https://bitbucket.org/icl/papi/get/papi-${
13
- lib.replaceStrings [ "." ] [ "-" ] version
14
- }-t.tar.gz";
15
- sha256 = "sha256-VajhmPW8sEJksfhLjBVlpBH7+AZr4fwKZPAtZxRF1Bk=";
+ url = "http://icl.utk.edu/projects/papi/downloads/papi-${finalAttrs.version}.tar.gz";
+ sha256 = "sha256-WBivttuj7OV/UeZYl9tQYvjjRk5u0pS2VOvzTDmRvE8=";
16
};
17
18
setSourceRoot = ''
@@ -32,4 +30,4 @@ stdenv.mkDerivation rec {
32
30
zhaofengli
33
31
];
34
35
-}
+})
0 commit comments