diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2018-11-04 11:54:39 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2018-11-04 12:00:13 +0200 |
commit | f909e2179715ea1cf7d381810c2de5dcfedfb45e (patch) | |
tree | 53c42efb5e43679b8c3c23576f0d95d27f50edc7 /gnu | |
parent | 2e77bbed719cfaa43d704e555a9007c5c4d52d2f (diff) | |
download | patches-f909e2179715ea1cf7d381810c2de5dcfedfb45e.tar patches-f909e2179715ea1cf7d381810c2de5dcfedfb45e.tar.gz |
gnu: debian-archive-keyring: Update to 2018.1.
* gnu/packages/debian.scm (debian-archive-keyring): Update to 2018.1.
[source]: Download from git repository.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/debian.scm | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/gnu/packages/debian.scm b/gnu/packages/debian.scm index 16b5d21e91..622c77b01e 100644 --- a/gnu/packages/debian.scm +++ b/gnu/packages/debian.scm @@ -33,15 +33,17 @@ (define-public debian-archive-keyring (package (name "debian-archive-keyring") - (version "2017.7") + (version "2018.1") (source (origin - (method url-fetch) - (uri (string-append "mirror://debian/pool/main/d/" name "/" - name "_" version ".tar.xz")) + (method git-fetch) + (uri (git-reference + (url "https://salsa.debian.org/release-team/debian-archive-keyring.git") + (commit version))) + (file-name (git-file-name name version)) (sha256 (base32 - "1pdwgipfi0y4svhxlw8arhq792f1g3vlmw4raphizy7sa65vd4ca")))) + "136vr5dj7w0dz563qdghsndcfcqm2m8d4j1dyiq9dzx5vd0rcpcw")))) (build-system gnu-build-system) (arguments '(#:test-target "verify-results" |