Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 17 lines 433 B view raw
1{ stdenv 2, fetchFromGitHub 3}: rec { 4 version = "2.7.0"; 5 src = fetchFromGitHub { 6 owner = "openrazer"; 7 repo = "openrazer"; 8 rev = "v${version}"; 9 sha256 = "013r9q4xg2xjmyxybx07zsl2b5lm9vw843anx22ygpvxz1qgz9hp"; 10 }; 11 meta = with stdenv.lib; { 12 homepage = https://openrazer.github.io/; 13 license = licenses.gpl2; 14 maintainers = with maintainers; [ roelvandijk evanjs ]; 15 platforms = platforms.linux; 16 }; 17}