Merge pull request #263327 from wineee/gpuvis

gpuvis: 20211204 -> 0.1
This commit is contained in:
Weijia Wang 2023-12-01 08:48:26 +01:00 committed by GitHub
commit 85793e8169
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,13 +12,13 @@
stdenv.mkDerivation rec {
pname = "gpuvis";
version = "20211204";
version = "0.1";
src = fetchFromGitHub {
owner = "mikesart";
repo = pname;
rev = "7f47419470687c7ecbdf086b81f5bafdb05d1bef";
sha256 = "sha256-29Bv+y0zWzn7QtpsjRV6hr19bCeyVJusPcYiAIEIluk=";
rev = "v${version}";
hash = "sha256-a9eAYDsiwyzZc4FAPo0wANysisIT4qCHLh2PrYswJtw=";
};
# patch dlopen path for gtk3
@ -36,6 +36,6 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/mikesart/gpuvis";
license = licenses.mit;
maintainers = with maintainers; [ emantor ];
platforms = with platforms; linux;
platforms = platforms.linux;
};
}