guile-xcb: update homepage and source
This commit is contained in:
parent
d4b72e9803
commit
9d29290741
1 changed files with 7 additions and 5 deletions
|
@ -1,6 +1,6 @@
|
||||||
{ lib
|
{ lib
|
||||||
, stdenv
|
, stdenv
|
||||||
, fetchurl
|
, fetchFromGitHub
|
||||||
, guile
|
, guile
|
||||||
, pkg-config
|
, pkg-config
|
||||||
, texinfo
|
, texinfo
|
||||||
|
@ -10,9 +10,11 @@ stdenv.mkDerivation rec {
|
||||||
pname = "guile-xcb";
|
pname = "guile-xcb";
|
||||||
version = "1.3";
|
version = "1.3";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "http://www.markwitmer.com/dist/${pname}-${version}.tar.gz";
|
owner = "mwitmer";
|
||||||
hash = "sha256-iYR6AYSTgUsURAEJTWcdHlc0f8LzEftAIsfonBteuxE=";
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
hash = "sha256-8iaYil2wiqnu9p7Gj93GE5akta1A0zqyApRwHct5RSs=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -29,7 +31,7 @@ stdenv.mkDerivation rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "http://www.markwitmer.com/guile-xcb/guile-xcb.html";
|
homepage = "https://github.com/mwitmer/guile-xcb";
|
||||||
description = "XCB bindings for Guile";
|
description = "XCB bindings for Guile";
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
maintainers = with maintainers; [ vyp ];
|
maintainers = with maintainers; [ vyp ];
|
||||||
|
|
Loading…
Reference in a new issue