File tree Expand file tree Collapse file tree 1 file changed +16
-8
lines changed
pkgs/by-name/gi/git-workspace Expand file tree Collapse file tree 1 file changed +16
-8
lines changed Original file line number Diff line number Diff line change 99
1010rustPlatform . buildRustPackage rec {
1111 pname = "git-workspace" ;
12- version = "1.8 .0" ;
12+ version = "1.9 .0" ;
1313
1414 src = fetchFromGitHub {
1515 owner = "orf" ;
16- repo = pname ;
17- rev = "v${ version } " ;
18- sha256 = "sha256-sS452PCX2G49Q5tnScG+ySkUAhFctGsGZrMvQXL7WkY =" ;
16+ repo = "git-workspace" ;
17+ tag = "v${ version } " ;
18+ hash = "sha256-SeE8O48lzqJSg8rfmIgsUcGPbquo2OvK3OUUBG21ksc =" ;
1919 } ;
2020
2121 useFetchCargoVendor = true ;
22- cargoHash = "sha256-iYT45iqKmx+t+xImbQuSv/nAvaiLNrLLqbe8zKAF4Jw =" ;
22+ cargoHash = "sha256-CaHZivayZNuCi8vID8Qr5j/Ed+GGdNu+7NznvsCb3j0 =" ;
2323
2424 nativeBuildInputs = [ pkg-config ] ;
2525
2626 buildInputs = [ openssl ] ;
2727
28+ checkFlags = [
29+ # integration tests, need docker
30+ # https://rust.testcontainers.org/system_requirements/docker/
31+ "--skip=test_archive_command"
32+ "--skip=test_fetch_and_run_commands"
33+ "--skip=test_update_command"
34+ ] ;
35+
2836 passthru . updateScript = nix-update-script { } ;
2937
30- meta = with lib ; {
38+ meta = {
3139 description = "Sync personal and work git repositories from multiple providers" ;
3240 homepage = "https://github.com/orf/git-workspace" ;
33- license = with licenses ; [ mit ] ;
34- maintainers = with maintainers ; [ misuzu ] ;
41+ license = with lib . licenses ; [ mit ] ;
42+ maintainers = with lib . maintainers ; [ misuzu ] ;
3543 mainProgram = "git-workspace" ;
3644 } ;
3745}
You can’t perform that action at this time.
0 commit comments