Created
June 18, 2019 07:53
-
-
Save mebubo/81a7fe92a9b5d2ecb5d55ad7a7993f27 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let | |
| config = { | |
| packageOverrides = pkgs: { | |
| sway-dev = pkgs.sway.overrideAttrs (oldAttrs: { | |
| version = "dev"; | |
| src = ./.; | |
| }); | |
| }; | |
| }; | |
| pkgs = import <nixpkgs> { inherit config; }; | |
| in with pkgs; { | |
| inherit sway-dev; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment