pkgs: dragger: change platforms to linux
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
I haven't tested it on darwin, and it just so happens that some dependency is broken on that system (breaking `nix flake check`)... Will revisit this later in case I ever happen to use a darwin system.
This commit is contained in:
parent
971b6e9b65
commit
069987f47e
|
@ -1,4 +1,4 @@
|
||||||
{ lib, fetchFromGitHub, qt5 }:
|
{ lib, fetchFromGitHub, qt5, stdenv }:
|
||||||
qt5.mkDerivation rec {
|
qt5.mkDerivation rec {
|
||||||
pname = "dragger";
|
pname = "dragger";
|
||||||
version = "0.1.0";
|
version = "0.1.0";
|
||||||
|
@ -24,6 +24,6 @@ qt5.mkDerivation rec {
|
||||||
homepage = "https://gitea.belanyi.fr/ambroisie/dragger";
|
homepage = "https://gitea.belanyi.fr/ambroisie/dragger";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = [ ambroisie ];
|
maintainers = [ ambroisie ];
|
||||||
platforms = platforms.all;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue