nixpkgs/pkgs/by-name/gp/gpu-switch/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

25 lines
723 B
Nix

{ stdenv, lib, fetchFromGitHub }:
stdenv.mkDerivation {
pname = "gpu-switch-unstable";
version = "2017-04-28";
src = fetchFromGitHub {
owner = "0xbb";
repo = "gpu-switch";
rev = "a365f56d435c8ef84c4dd2ab935ede4992359e31";
sha256 = "1jnh43nijkqd83h7piq7225ixziggyzaalabgissyxdyz6szcn0r";
};
installPhase = ''
mkdir -p $out/bin
cp gpu-switch $out/bin/
'';
meta = with lib; {
description = "Application that allows to switch between the graphic cards of dual-GPU MacBook Pro models";
mainProgram = "gpu-switch";
homepage = "https://github.com/0xbb/gpu-switch";
license = licenses.mit;
platforms = platforms.linux;
maintainers = [ maintainers.msiedlarek ];
};
}